Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
19 | public function testCreate() |
||
20 | { |
||
21 | /** @var Filesystem|MockObject $filesystem */ |
||
22 | $filesystem = $this->createPartialMock(Filesystem::class, ['put']); |
||
23 | $filesystem->expects(static::once())->method('put')->willReturn(true); |
||
24 | |||
25 | $config = $this->createMock(Config::class); |
||
26 | $config->method('getMigrationsPath')->willReturn('path'); |
||
|
|||
27 | $creator = new MigrationCreator($filesystem, $config); |
||
28 | |||
29 | $version = $creator->create(); |
||
30 | static::assertIsString($version); |
||
31 | } |
||
32 | } |
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.