| 1 | <?php  | 
            ||
| 7 | abstract class AbstractUpdateTheme extends AbstractCommand  | 
            ||
| 8 | { | 
            ||
| 9 | /**  | 
            ||
| 10 | * @var Theme  | 
            ||
| 11 | */  | 
            ||
| 12 | protected $theme;  | 
            ||
| 13 | |||
| 14 | /**  | 
            ||
| 15 | * @param string $itemId  | 
            ||
| 16 | * @param Theme $theme  | 
            ||
| 17 | */  | 
            ||
| 18 | public function __construct($itemId, Theme $theme)  | 
            ||
| 23 | |||
| 24 | /**  | 
            ||
| 25 | * @return Theme  | 
            ||
| 26 | */  | 
            ||
| 27 | public function getTheme()  | 
            ||
| 31 | }  | 
            ||
| 32 |