| Total Complexity | 3 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | final class PaginationDataHandlerSpec extends ObjectBehavior |
||
| 20 | { |
||
| 21 | function it_is_initializable(): void |
||
|
|
|||
| 22 | { |
||
| 23 | $this->shouldHaveType(PaginationDataHandler::class); |
||
| 24 | } |
||
| 25 | |||
| 26 | function it_implements_pagination_data_handler_interface(): void |
||
| 29 | } |
||
| 30 | |||
| 31 | function it_retrieves_data(): void |
||
| 39 |
Adding explicit visibility (
private,protected, orpublic) is generally recommend to communicate to other developers how, and from where this method is intended to be used.