for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* AnimeDb package.
*
* @author Peter Gribanov <[email protected]>
* @copyright Copyright (c) 2011, Peter Gribanov
* @license http://opensource.org/licenses/GPL-3.0 GPL v3
*/
namespace AnimeDb\Bundle\CatalogBundle\Event\Install;
use Symfony\Component\EventDispatcher\Event;
use AnimeDb\Bundle\CatalogBundle\Entity\Storage;
* Event thrown when a install samples.
class Samples extends Event
{
* @var Storage
protected $storage;
* @param Storage $storage
public function __construct(Storage $storage)
$this->storage = $storage;
}
* @return Storage
public function getStorage()
return $this->storage;