| 1 | <?php |
||
| 21 | trait EnumsSupport |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @var EnumTransfer |
||
| 25 | */ |
||
| 26 | private $transfer; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @return void |
||
| 30 | */ |
||
| 31 | protected function bootEnumsSupport(): void |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @param array $config |
||
| 44 | * @return array |
||
| 45 | */ |
||
| 46 | private function configs(array $config): array |
||
| 56 | |||
| 57 | /** |
||
| 58 | * @param AbstractEnum|string|mixed $type |
||
| 59 | * @return \GraphQL\Type\Definition\EnumType|mixed |
||
| 60 | * @throws \ReflectionException |
||
| 61 | */ |
||
| 62 | private function wrapType($type) |
||
| 70 | } |
This check looks for methods that are used by a trait but not required by it.
To illustrate, let’s look at the following code example
The trait
Idableprovides a methodequalsIdthat in turn relies on the methodgetId(). If this method does not exist on a class mixing in this trait, the method will fail.Adding the
getId()as an abstract method to the trait will make sure it is available.