Passed
Push — master ( a4951b...dbea9a )
by Mathieu
02:11
created

MauticLdapAuthBundle.php (1 issue)

Labels
Severity
1
<?php
2
/**
3
 * @package     Mautic
4
 * @copyright   2019 Monogramm. All rights reserved
5
 * @author      Monogramm
6
 *
7
 * @link        https://www.monogramm.io
8
 *
9
 * @license     GNU/AGPLv3 http://www.gnu.org/licenses/agpl.html
10
 */
11
12
namespace MauticPlugin\MauticLdapAuthBundle;
13
14
use Mautic\PluginBundle\Bundle\PluginBundleBase;
1 ignored issue
show
The type Mautic\PluginBundle\Bundle\PluginBundleBase was not found. Maybe you did not declare it correctly or list all dependencies?

The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g. excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
15
16
/**
17
 * Class MauticLdapAuthBundle.
18
 */
19
class MauticLdapAuthBundle extends PluginBundleBase
20
{
21
}
22