| 1 |
<?php |
| 2 |
/* |
| 3 |
* This file is part of the ManageWP Worker plugin. |
| 4 |
* |
| 5 |
* (c) ManageWP LLC <contact@managewp.com> |
| 6 |
* |
| 7 |
* For the full copyright and license information, please view the LICENSE |
| 8 |
* file that was distributed with this source code. |
| 9 |
*/ |
| 10 |
|
| 11 |
abstract class MWP_Action_Abstract implements MWP_ServiceContainer_ContainerAwareInterface |
| 12 |
{ |
| 13 |
|
| 14 |
/** |
| 15 |
* @var MWP_ServiceContainer_Interface |
| 16 |
*/ |
| 17 |
protected $container; |
| 18 |
|
| 19 |
public function setContainer(MWP_ServiceContainer_Interface $container) |
| 20 |
{ |
| 21 |
$this->container = $container; |
| 22 |
} |
| 23 |
} |
| 24 |
|