Failed Conditions
Push — experimental/3.1 ( 5ad1b6...37d029 )
by Ryo
211:04 queued 202:55
created

ComposerServiceProvider   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 21
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 3

Importance

Changes 2
Bugs 0 Features 0
Metric Value
dl 0
loc 21
rs 10
c 2
b 0
f 0
wmc 4
lcom 0
cbo 3

1 Method

Rating   Name   Duplication   Size   Complexity  
A register() 0 15 4
1
<?php
2
/*
3
 * This file is part of EC-CUBE
4
 *
5
 * Copyright(c) 2000-2015 LOCKON CO.,LTD. All Rights Reserved.
6
 *
7
 * http://www.lockon.co.jp/
8
 *
9
 * This program is free software; you can redistribute it and/or
10
 * modify it under the terms of the GNU General Public License
11
 * as published by the Free Software Foundation; either version 2
12
 * of the License, or (at your option) any later version.
13
 *
14
 * This program is distributed in the hope that it will be useful,
15
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17
 * GNU General Public License for more details.
18
 *
19
 * You should have received a copy of the GNU General Public License
20
 * along with this program; if not, write to the Free Software
21
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22
 */
23
namespace Eccube\ServiceProvider;
24
25
use Eccube\Service\Composer\ComposerApiService;
26
use Eccube\Service\Composer\ComposerProcessService;
27
use Pimple\Container;
28
use Pimple\ServiceProviderInterface;
29
30
/**
31
 * Class ComposerServiceProvider
32
 * @package Eccube\ServiceProvider
33
 */
34
class ComposerServiceProvider implements ServiceProviderInterface
35
{
36
    /**
37
     * @param Container $app
38
     */
39
    public function register(Container $app)
40
    {
41
        $app['eccube.service.composer'] = function () use ($app) {
42
            /**@var \Eccube\Service\SystemService $systemService */
43
            $systemService = $app['eccube.service.system'];
44
            $composerMemory = $app['config']['composer_memory_limit'];
45
            $memoryLimit = $systemService->getMemoryLimit();
46
            // Check memory and can set memory for composer api
47
            if ($systemService->canSetMemoryLimit($composerMemory.'M') || $memoryLimit == -1 || $memoryLimit >= $composerMemory) {
48
                return new ComposerApiService($app['config']);
49
            } else {
50
                return new ComposerProcessService($app['config'], $app['orm.em'], $systemService->getPHP());
0 ignored issues
show
Security Bug introduced by
It seems like $systemService->getPHP() targeting Eccube\Service\SystemService::getPHP() can also be of type false; however, Eccube\Service\Composer\...sService::__construct() does only seem to accept string, did you maybe forget to handle an error condition?
Loading history...
51
            }
52
        };
53
    }
54
}
55