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

Catalog::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 3
ccs 0
cts 2
cp 0
rs 10
cc 1
eloc 1
nc 1
nop 1
crap 2
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
}