1 | <?php |
||
11 | class UpdateEntityConfigEntityValueQuery extends BaseQuery |
||
12 | { |
||
13 | /** |
||
14 | * @var string |
||
15 | */ |
||
16 | protected $oldValue; |
||
17 | |||
18 | /** |
||
19 | * {@inheritdoc} |
||
20 | * @param string $oldValue |
||
21 | */ |
||
22 | public function __construct($entityName, $scope, $code, $value, $oldValue) |
||
28 | |||
29 | /** |
||
30 | * {@inheritdoc} |
||
31 | */ |
||
32 | public function execute(LoggerInterface $logger) |
||
38 | |||
39 | /** |
||
40 | * Checks if need to update workflow configuration |
||
41 | * |
||
42 | * @param LoggerInterface $logger |
||
43 | * |
||
44 | * @return bool |
||
45 | */ |
||
46 | public function isEqualOldValue(LoggerInterface $logger) |
||
60 | } |
||
61 |