Acacha\Llum\Filesystem\Filesystem::get PHP Метод

get() публичный метод

Get file contents
public get ( $file )
    public function get($file)
    {
        return file_get_contents($file);
    }

Usage Example

Пример #1
0
 /**
  * init command.
  */
 public function init(InputInterface $input, OutputInterface $output)
 {
     try {
         $this->executeWizard($input, $output);
         $this->filesytem->overwrite((new LlumRCFile())->path(), $this->compiler->compile($this->filesytem->get($this->getStubPath()), $this->data));
     } catch (\Exception $e) {
         print_r($e->xdebug_message);
     }
 }
All Usage Examples Of Acacha\Llum\Filesystem\Filesystem::get