| 1 | <?php  | 
            ||
| 20 | trait BooleanEnabledTrait { | 
            ||
| 21 | |||
| 22 | /**  | 
            ||
| 23 | * Enabled.  | 
            ||
| 24 | *  | 
            ||
| 25 | * @var bool  | 
            ||
| 26 | */  | 
            ||
| 27 | protected $enabled;  | 
            ||
| 28 | |||
| 29 | /**  | 
            ||
| 30 | * Get the enabled.  | 
            ||
| 31 | *  | 
            ||
| 32 | * @return bool Returns the enabled.  | 
            ||
| 33 | */  | 
            ||
| 34 |     public function getEnabled() { | 
            ||
| 37 | |||
| 38 | /**  | 
            ||
| 39 | * Set the enabled.  | 
            ||
| 40 | *  | 
            ||
| 41 | * @param bool $enabled The enabled.  | 
            ||
| 42 | */  | 
            ||
| 43 |     public function setEnabled($enabled) { | 
            ||
| 47 | }  | 
            ||
| 48 |