vendor/sonata-project/exporter/aliases/Writer/CsvWriter.php line 18

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Sonata Project package.
  4.  *
  5.  * (c) Thomas Rabaix <[email protected]>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Exporter\Writer;
  11. if (!class_exists('\Sonata\\'.__NAMESPACE__.'\CsvWriter'false)) {
  12.     @trigger_error(
  13.         'The '.__NAMESPACE__.'\CsvWriter class is deprecated since version 1.x and will be removed in 2.0.'
  14.         .' Use \Sonata\\'.__NAMESPACE__.'\CsvWriter instead',
  15.         E_USER_DEPRECATED
  16.     );
  17. }
  18. class_alias(
  19.     '\Sonata\\'.__NAMESPACE__.'\CsvWriter',
  20.     __NAMESPACE__.'\CsvWriter'
  21. );
  22. if (false) {
  23.     class CsvWriter extends \Sonata\Exporter\Writer\CsvWriter
  24.     {
  25.     }
  26. }