Test Failed
Push — master ( 2a75d8...e4b8e4 )
by Julien
12:49
created

Blameable::initializeBlameable()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 3
rs 10
1
<?php
2
3
/**
4
 * This file is part of the Zemit Framework.
5
 *
6
 * (c) Zemit Team <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE.txt
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Zemit\Mvc\Model;
13
14
use Zemit\Config\ConfigInterface;
15
use Zemit\Models\Audit;
16
use Zemit\Models\AuditDetail;
17
use Zemit\Models\User;
0 ignored issues
show
Bug introduced by
This use statement conflicts with another class in this namespace, Zemit\Mvc\Model\User. Consider defining an alias.

Let?s assume that you have a directory layout like this:

.
|-- OtherDir
|   |-- Bar.php
|   `-- Foo.php
`-- SomeDir
    `-- Foo.php

and let?s assume the following content of Bar.php:

// Bar.php
namespace OtherDir;

use SomeDir\Foo; // This now conflicts the class OtherDir\Foo

If both files OtherDir/Foo.php and SomeDir/Foo.php are loaded in the same runtime, you will see a PHP error such as the following:

PHP Fatal error:  Cannot use SomeDir\Foo as Foo because the name is already in use in OtherDir/Foo.php

However, as OtherDir/Foo.php does not necessarily have to be loaded and the error is only triggered if it is loaded before OtherDir/Bar.php, this problem might go unnoticed for a while. In order to prevent this error from surfacing, you must import the namespace with a different alias:

// Bar.php
namespace OtherDir;

use SomeDir\Foo as SomeDirFoo; // There is no conflict anymore.
Loading history...
18
use Zemit\Mvc\Model\AbstractTrait\AbstractBehavior;
19
use Zemit\Mvc\Model\AbstractTrait\AbstractInjectable;
20
21
trait Blameable
22
{
23
    use AbstractBehavior;
24
    use AbstractInjectable;
25
    
26
    /**
27
     * Initializing Blameable
28
     */
29
    public function initializeBlameable(): void
30
    {
31
        $this->addBlameableBehavior();
32
    }
33
    
34
    /**
35
     * Blameable Audit Behavior
36
     */
37
    public function addBlameableBehavior(): void
38
    {
39
        $config = $this->getDI()->get('config');
40
        assert($config instanceof ConfigInterface);
41
        
42
        $this->addBehavior(new Behavior\Blameable([
43
            'auditClass' => $config->getModelClass(Audit::class),
44
            'auditDetailClass' => $config->getModelClass(AuditDetail::class),
45
            'userClass' => $config->getModelClass(User::class),
46
        ]));
47
    }
48
}
49