Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| <?php | |
| /** | |
| * Copyright (c) Tony Bogdanov <support@tonybogdanov.com> | |
| * | |
| * For the full copyright and license information, please view the LICENSE | |
| * file that was distributed with this source code. | |
| */ | |
| namespace TonyBogdanov\MockableAnnotations\MockProvider\PropertyMockProvider\Strategy; | |
| use ReflectionProperty; | |
| /** | |
| * Interface StrategyInterface | |
| * | |
| * @package TonyBogdanov\MockableAnnotations\MockProvider\PropertyMockProvider\Strategy | |
| */ | |
| interface StrategyInterface { | |
| /** | |
| * @param ReflectionProperty $property | |
| * @param array $annotations | |
| * @param array $mockedAnnotations | |
| * | |
| * @return array | |
| */ | |
| public function mock( ReflectionProperty $property, array $annotations, array $mockedAnnotations ): array; | |
| } |