Sonata\Exporter\Writer\JsonWriter::__construct PHP Метод

__construct() публичный Метод

public __construct ( string $filename )
$filename string
    public function __construct($filename)
    {
        $this->filename = $filename;
        $this->position = 0;
        if (is_file($filename)) {
            throw new \RuntimeException(sprintf('The file %s already exist', $filename));
        }
    }