13 lines
351 B
PHP
13 lines
351 B
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
/**
|
|
* Backward compatibility alias for DateNormalizer.
|
|
* Old code references App\Services\DateNormalizer, but actual class is at App\Services\Import\DateNormalizer.
|
|
*/
|
|
class DateNormalizer extends \App\Services\Import\DateNormalizer
|
|
{
|
|
// This class extends the actual DateNormalizer for backward compatibility
|
|
}
|