for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace allejo\stakx\Manager;
use Symfony\Component\Finder\SplFileInfo;
class AssetManager extends FileManager
{
public function __construct($includes = array(), $excludes = array())
parent::__construct();
$this->finder = $this->fs->getFinder($includes, $excludes);
}
public function copyFiles()
/** @var $file SplFileInfo */
foreach ($this->finder as $file)
$this->copyToCompiledSite($file);