for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created by IntelliJ IDEA.
* User: gerk
* Date: 04.01.17
* Time: 06:28
*/
namespace PeekAndPoke\Component\Slumber\Annotation\Slumber;
use Doctrine\Common\Annotations\Annotation;
* @Annotation
* @Annotation\Target("CLASS")
*
* @author Karsten J. Gerber <[email protected]>
class Repository extends Annotation
{
* @var string The name of the storage holding the repository
public $storage = 'default';
public function getName()
return (string) $this->value;
}
* @return string
public function getStorage()
return $this->storage;