Phalcon\Build\Generator_File_PhalconC::addLicense PHP Method

addLicense() protected method

Add license notice to the generated file
protected addLicense ( resource $fileHandler )
$fileHandler resource
    protected function addLicense($fileHandler)
    {
        $docFile = $this->rootDir . '/docs/LICENSE.txt';
        fwrite($fileHandler, '/**' . PHP_EOL . PHP_EOL . file_get_contents($docFile) . '*/' . PHP_EOL);
    }