1 | <?php |
||
18 | class Feature extends AbstractItem |
||
19 | { |
||
20 | /** |
||
21 | * @var string |
||
22 | * @author stev leibelt <[email protected]> |
||
23 | * @since 2013-06-26 |
||
24 | */ |
||
25 | protected $feature; |
||
26 | |||
27 | /** |
||
28 | * @var string |
||
29 | * @author stev leibelt <[email protected]> |
||
30 | * @since 2013-06-26 |
||
31 | */ |
||
32 | protected $expectedFeature; |
||
33 | |||
34 | /** |
||
35 | * @param string $feature - the feature you want to met for |
||
36 | * @author stev leibelt <[email protected]> |
||
37 | * @since 2013-06-26 |
||
38 | */ |
||
39 | public function setFeature($feature) |
||
43 | |||
44 | /** |
||
45 | * {$inheritdoc} |
||
46 | */ |
||
47 | public function isMet() |
||
51 | } |