| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | public function up(Schema $schema): void |
||
| 21 | { |
||
| 22 | $envFilepath = $this->getEnvFilepath(); |
||
| 23 | |||
| 24 | $envFile = file_get_contents($envFilepath); |
||
| 25 | |||
| 26 | if ($token = ScimHelper::createToken()) { |
||
| 27 | $newEnvFile = str_replace('{{SCIM_TOKEN}}', $token, $envFile); |
||
| 28 | |||
| 29 | file_put_contents($envFilepath, $newEnvFile); |
||
| 30 | } |
||
| 44 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.