for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* File was created 30.09.2015 10:49
*/
namespace PeekAndPoke\Component\Slumber\Annotation\Slumber;
use Doctrine\Common\Annotations\Annotation;
* AsList treats the nested elements as a list.
*
* Keys are NOT preserved and are removed.
* The result of slumbering will look like:
* Input:
* <code>
* array ( 'a' => 'A', 'b' => 'B' )
* </code>
* Output:
* [ 'A', 'B' ]
* @Annotation
* @Annotation\Target("PROPERTY")
* @author Karsten J. Gerber <[email protected]>
class AsList extends AsCollection
{
}