aimeos /
aimeos-laravel
| 1 | <?php |
||
| 2 | |||
| 3 | class AimeosTest extends AimeosTestAbstract |
||
| 4 | { |
||
| 5 | public function testGet() |
||
| 6 | { |
||
| 7 | $object = $this->app->make( '\Aimeos\Shop\Base\Aimeos' )->get(); |
||
|
0 ignored issues
–
show
|
|||
| 8 | $this->assertInstanceOf( '\Aimeos\Bootstrap', $object ); |
||
| 9 | } |
||
| 10 | |||
| 11 | |||
| 12 | public function testGetVersion() |
||
| 13 | { |
||
| 14 | $object = $this->app->make( '\Aimeos\Shop\Base\Aimeos' ); |
||
| 15 | $this->assertIsString( $object->getVersion() ); |
||
| 16 | } |
||
| 17 | } |
||
| 18 |
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.