| Total Complexity | 2 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class Oauth2EncryptionKeyFactory extends Component implements Oauth2EncryptionKeyFactoryInterface |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * Default value for `createFromAsciiSafeString()` doNotTrim parameter. |
||
| 13 | * @var bool |
||
| 14 | */ |
||
| 15 | public $doNotTrim = false; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @inheritDoc |
||
| 19 | */ |
||
| 20 | 5 | public function createFromAsciiSafeString($keyString, $doNotTrim = null) |
|
| 25 |