Completed
Push — master ( 1e4664...b9c908 )
by Andrii
02:57
created

PhpCsFixerController::actionStopFix()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 1 Features 1
Metric Value
c 1
b 1
f 1
dl 0
loc 4
ccs 0
cts 2
cp 0
rs 10
cc 1
eloc 2
nc 1
nop 0
crap 2
1
<?php
2
3
/*
4
 * PHP-CS-Fixer plugin for HiDev
5
 *
6
 * @link      https://github.com/hiqdev/hidev-php-cs-fixer
7
 * @package   hidev-php-cs-fixer
8
 * @license   BSD-3-Clause
9
 * @copyright Copyright (c) 2015-2016, HiQDev (http://hiqdev.com/)
10
 */
11
12
namespace hidev\phpcsfixer\controllers;
13
14
/**
15
 * Goal for php-cs-fixer.
16
 */
17
class PhpCsFixerController extends \hidev\controllers\FileController
18
{
19
    protected $_before = ['.php_cs'];
20
21
    public function actionMake()
22
    {
23
        return $this->runAction('fix');
24
    }
25
26
    public function actionFix()
27
    {
28
        $this->runAction('stop-fix');
29
    }
30
31
    public function actionStopFix()
32
    {
33
        return $this->passthru('php-cs-fixer', ['fix', '.']);
0 ignored issues
show
Documentation introduced by
array('fix', '.') is of type array<integer,string,{"0":"string","1":"string"}>, but the function expects a string.

It seems like the type of the argument is not accepted by the function/method which you are calling.

In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.

We suggest to add an explicit type cast like in the following example:

function acceptsInteger($int) { }

$x = '123'; // string "123"

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
34
    }
35
36
    public function actionCheck()
37
    {
38
        return $this->passthru('php-cs-fixer', ['fix', '.', '--dry-run']);
0 ignored issues
show
Documentation introduced by
array('fix', '.', '--dry-run') is of type array<integer,string,{"0..."string","2":"string"}>, but the function expects a string.

It seems like the type of the argument is not accepted by the function/method which you are calling.

In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.

We suggest to add an explicit type cast like in the following example:

function acceptsInteger($int) { }

$x = '123'; // string "123"

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
39
    }
40
}
41