1 | <?php |
||
9 | abstract class Migration implements MigrationContract |
||
10 | { |
||
11 | /** @var \Illuminate\Database\Capsule\Manager */ |
||
12 | protected $manager; |
||
13 | |||
14 | /** @var \Wandu\Database\Configuration */ |
||
15 | protected $config; |
||
16 | |||
17 | public function __construct(Manager $manager, Configuration $config) |
||
22 | |||
23 | /** |
||
24 | * {@inheritdoc} |
||
25 | */ |
||
26 | public function up() |
||
30 | |||
31 | /** |
||
32 | * {@inheritdoc} |
||
33 | */ |
||
34 | public function down() |
||
38 | |||
39 | /** |
||
40 | * @param \Illuminate\Database\Schema\Builder $schema |
||
41 | */ |
||
42 | abstract public function migrate(Builder $schema); |
||
43 | |||
44 | /** |
||
45 | * @param \Illuminate\Database\Schema\Builder $schema |
||
46 | */ |
||
47 | abstract public function rollback(Builder $schema); |
||
48 | } |
||
49 |
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.