Completed
Push — master ( 4fafa1...e65f27 )
by Nicolas
12:12
created

src/Laravel/LaravelFileRepository.php (1 issue)

Labels

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
namespace Nwidart\Modules\Laravel;
4
5
use Nwidart\Modules\FileRepository;
6
7
class LaravelFileRepository extends FileRepository
8
{
9
    /**
10
     * {@inheritdoc}
11
     */
12 133
    protected function createModule(...$args)
13
    {
14 133
        return new Module(...$args);
0 ignored issues
show
The call to Module::__construct() misses some required arguments starting with $name.
Loading history...
15
    }
16
}
17