Phalcon\Build\Generator_File_PhalconH::cleanExtern PHP Method

cleanExtern() protected method

Remove 'extern ' declaration from the source file line
protected cleanExtern ( string $line ) : string
$line string
return string
    protected function cleanExtern($line)
    {
        if (strncmp($line, 'extern ', 7) == 0) {
            $line = substr($line, 7);
        }
        return $line;
    }