| 1 | <?php |
||
| 8 | trait ManagesAttachments |
||
| 9 | { |
||
| 10 | use TransformsAttachments; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * Add a new attachment. |
||
| 14 | * |
||
| 15 | * @param string $path |
||
| 16 | * @param string $workItemId |
||
| 17 | * |
||
| 18 | * @param string $projectId |
||
| 19 | * @return \TestMonitor\DevOps\Resources\Attachment |
||
| 20 | */ |
||
| 21 | 5 | public function addAttachment(string $path, string $workItemId, string $projectId): Attachment |
|
| 44 | } |
||
| 45 |
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.