Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
2 / 2 |
| SetTrait | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
2 / 2 |
| set | |
100.00% |
1 / 1 |
1 | |
100.00% |
2 / 2 |
|||
| <?php | |
| declare(strict_types=1); | |
| namespace Korobochkin\WPKit\DataComponents\Traits; | |
| trait SetTrait | |
| { | |
| /** | |
| * @inheritdoc | |
| */ | |
| public function set($value) | |
| { | |
| /** | |
| * @var $this \Korobochkin\WPKit\DataComponents\NodeInterface | |
| */ | |
| $this->setLocalValue($value); | |
| return $this; | |
| } | |
| } |