| 1 | <?php  | 
            ||
| 12 | class PostSlug implements ConditionInterface { | 
            ||
| 13 | /**  | 
            ||
| 14 | * Post slug to check against  | 
            ||
| 15 | *  | 
            ||
| 16 | * @var string  | 
            ||
| 17 | */  | 
            ||
| 18 | protected $post_slug = '';  | 
            ||
| 19 | |||
| 20 | /**  | 
            ||
| 21 | * Constructor  | 
            ||
| 22 | *  | 
            ||
| 23 | * @param string $post_slug  | 
            ||
| 24 | */  | 
            ||
| 25 | 	public function __construct( $post_slug ) { | 
            ||
| 28 | |||
| 29 | /**  | 
            ||
| 30 | 	 * {@inheritDoc} | 
            ||
| 31 | */  | 
            ||
| 32 | 	public function isSatisfied( Request $request ) { | 
            ||
| 36 | |||
| 37 | /**  | 
            ||
| 38 | 	 * {@inheritDoc} | 
            ||
| 39 | */  | 
            ||
| 40 | 	public function getArguments( Request $request ) { | 
            ||
| 43 | }  | 
            ||
| 44 |