| Conditions | 3 |
| Paths | 4 |
| Total Lines | 14 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | public function generateBase32RandomKey($length = 16, $prefix = '') |
||
| 17 | { |
||
| 18 | $b32 = '234567QWERTYUIOPASDFGHJKLZXCVBNM'; |
||
| 19 | |||
| 20 | $secret = $prefix ? $this->toBase32($prefix) : ''; |
||
| 21 | |||
| 22 | for ($i = 0; $i < $length; $i++) { |
||
| 23 | $secret .= $b32[$this->getRandomNumber()]; |
||
| 24 | } |
||
| 25 | |||
| 26 | $this->validateSecret($secret); |
||
|
|
|||
| 27 | |||
| 28 | return $secret; |
||
| 29 | } |
||
| 30 | |||
| 77 |
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.