Passed
Pull Request — develop (#2)
by Andreas
05:17
created

Catalog   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 1
c 1
b 0
f 1
lcom 0
cbo 0
dl 0
loc 9
ccs 0
cts 2
cp 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
3
namespace Wambo\Catalog;
4
5
use Wambo\Core\App;
6
use Wambo\Core\Module\ModuleBootstrapInterface;
7
8
9
/**
10
 * Class Catalog is a dummy class to get the catalog module to work in the demo store.
11
 * TODO: Remove this class once the module installer no longer requires this class for every module.
12
 *
13
 * @package Wambo\Catalog
14
 */
15
class Catalog implements ModuleBootstrapInterface
16
{
17
    /**
18
     * @param App $app
19
     */
20
    public function __construct(App $app)
21
    {
22
    }
23
}