Esempio n. 1
0
 function precompile()
 {
     $dir = $this->app['pipe.precompile_directory'];
     $manifest = new Manifest($this->app['pipe.environment'], $this->app['pipe.manifest'], $dir);
     $manifest->compress = true;
     $manifest->compile((array) $this->app['pipe.precompile']);
 }
Esempio n. 2
0
 /**
  * @expectedException \UnexpectedValueException
  */
 function testReadThrowsExceptionWhenNotFound()
 {
     $env = new Environment();
     $manifest = new Manifest($env, __DIR__ . "/foo.json");
     $manifest->read();
 }