ConsoleShell   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 55
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 30
c 1
b 0
f 0
dl 0
loc 55
ccs 0
cts 25
cp 0
rs 10
wmc 3

2 Methods

Rating   Name   Duplication   Size   Complexity  
A main() 0 27 2
A _getOptionParser() 0 13 1
1
<?php
0 ignored issues
show
Coding Style introduced by
Class found in ".php" file; use ".inc" extension instead
Loading history...
Coding Style introduced by
Header blocks must be separated by a single blank line
Loading history...
Coding Style introduced by
Filename "ConsoleShell.php" doesn't match the expected filename "consoleshell.php"
Loading history...
Coding Style introduced by
The PHP open tag does not have a corresponding PHP close tag
Loading history...
2
/**
0 ignored issues
show
introduced by
Namespaced classes, interfaces and traits should not begin with a file doc comment
Loading history...
3
 * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
4
 * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
0 ignored issues
show
introduced by
Doc comment short description must be on a single line, further text should be a separate paragraph
Loading history...
5
 *
6
 * Licensed under The MIT License
7
 * For full copyright and license information, please see the LICENSE.txt
8
 * Redistributions of files must retain the above copyright notice.
9
 *
10
 * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
0 ignored issues
show
Coding Style Documentation introduced by
Expected "xxxx-xxxx Squiz Pty Ltd (ABN 77 084 670 600)" for copyright declaration
Loading history...
Coding Style introduced by
The tag in position 1 should be the @package tag
Loading history...
Coding Style introduced by
@copyright tag must contain a year and the name of the copyright holder
Loading history...
11
 * @link      http://cakephp.org CakePHP(tm) Project
0 ignored issues
show
Coding Style introduced by
The tag in position 2 should be the @subpackage tag
Loading history...
introduced by
Tag value indented incorrectly; expected 1 space but found 6
Loading history...
Coding Style introduced by
The tag in position 2 should be the @license tag
Loading history...
12
 * @since     3.0.0
0 ignored issues
show
Coding Style introduced by
The tag in position 3 should be the @link tag
Loading history...
Coding Style introduced by
The tag in position 3 should be the @author tag
Loading history...
introduced by
Tag value indented incorrectly; expected 1 space but found 5
Loading history...
13
 * @license   http://www.opensource.org/licenses/mit-license.php MIT License
0 ignored issues
show
introduced by
Tag value indented incorrectly; expected 1 space but found 3
Loading history...
Coding Style introduced by
The tag in position 4 should be the @since tag
Loading history...
Coding Style introduced by
The tag in position 4 should be the @copyright tag
Loading history...
14
 */
0 ignored issues
show
Coding Style introduced by
Header blocks must be separated by a single blank line
Loading history...
Coding Style introduced by
PHP version not specified
Loading history...
Coding Style introduced by
There must be exactly one blank line after the file comment
Loading history...
Coding Style Documentation introduced by
Missing @package tag in file comment
Loading history...
Coding Style Documentation introduced by
Missing @subpackage tag in file comment
Loading history...
Coding Style Documentation introduced by
Missing @author tag in file comment
Loading history...
Coding Style introduced by
Missing @category tag in file comment
Loading history...
15
namespace App\Shell;
16
17
use Cake\Console\ConsoleOptionParser;
18
use Cake\Console\Shell;
19
use Cake\Log\Log;
20
use Psy\Shell as PsyShell;
21
22
/**
23
 * Simple console wrapper around Psy\Shell.
24
 */
0 ignored issues
show
Coding Style introduced by
Missing @license tag in class comment
Loading history...
Coding Style introduced by
Missing @link tag in class comment
Loading history...
Coding Style introduced by
Missing @author tag in class comment
Loading history...
Coding Style introduced by
Missing @package tag in class comment
Loading history...
Coding Style introduced by
Missing @category tag in class comment
Loading history...
25
class ConsoleShell extends Shell
0 ignored issues
show
Deprecated Code introduced by
The class Cake\Console\Shell has been deprecated: 3.6.0 ShellDispatcher and Shell will be removed in 5.0 ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-deprecated  annotation

25
class ConsoleShell extends /** @scrutinizer ignore-deprecated */ Shell
Loading history...
26
{
0 ignored issues
show
introduced by
Opening brace should be on the same line as the declaration
Loading history...
Coding Style introduced by
Opening brace should be on the same line as the declaration for class ConsoleShell
Loading history...
27
28
    /**
29
     * Start the shell and interactive console.
30
     *
31
     * @return int|null
0 ignored issues
show
Coding Style introduced by
Expected "integer|null" but found "int|null" for function return type
Loading history...
32
     */
33
    public function main()
34
    {
0 ignored issues
show
Coding Style introduced by
Opening brace should be on the same line as the declaration
Loading history...
35
        if (!class_exists('Psy\Shell')) {
0 ignored issues
show
Coding Style introduced by
Expected 1 space(s) after NOT operator; 0 found
Loading history...
36
            $this->err('<error>Unable to load Psy\Shell.</error>');
37
            $this->err('');
38
            $this->err('Make sure you have installed psysh as a dependency,');
39
            $this->err('and that Psy\Shell is registered in your autoloader.');
40
            $this->err('');
41
            $this->err('If you are using composer run');
42
            $this->err('');
43
            $this->err('<info>$ php composer.phar require --dev psy/psysh</info>');
44
            $this->err('');
45
46
            return self::CODE_ERROR;
47
        }
48
49
        $this->out("You can exit with <info>`CTRL-C`</info> or <info>`exit`</info>");
0 ignored issues
show
Coding Style Comprehensibility introduced by
The string literal You can exit with <info>... or <info>`exit`</info> does not require double quotes, as per coding-style, please use single quotes.

PHP provides two ways to mark string literals. Either with single quotes 'literal' or with double quotes "literal". The difference between these is that string literals in double quotes may contain variables with are evaluated at run-time as well as escape sequences.

String literals in single quotes on the other hand are evaluated very literally and the only two characters that needs escaping in the literal are the single quote itself (\') and the backslash (\\). Every other character is displayed as is.

Double quoted string literals may contain other variables or more complex escape sequences.

<?php

$singleQuoted = 'Value';
$doubleQuoted = "\tSingle is $singleQuoted";

print $doubleQuoted;

will print an indented: Single is Value

If your string literal does not contain variables or escape sequences, it should be defined using single quotes to make that fact clear.

For more information on PHP string literals and available escape sequences see the PHP core documentation.

Loading history...
50
        $this->out('');
51
52
        Log::drop('debug');
53
        Log::drop('error');
54
        $this->_io->setLoggers(false);
55
        restore_error_handler();
56
        restore_exception_handler();
57
58
        $psy = new PsyShell();
59
        $psy->run();
60
    }
61
62
    /**
63
     * Display help for this console.
64
     *
65
     * @return \Cake\Console\ConsoleOptionParser
66
     */
67
    public function _getOptionParser()
0 ignored issues
show
Coding Style introduced by
Public method name "ConsoleShell::_getOptionParser" must not be prefixed with an underscore
Loading history...
introduced by
Public method name "ConsoleShell::_getOptionParser" is not in lowerCamel format
Loading history...
68
    {
0 ignored issues
show
Coding Style introduced by
Opening brace should be on the same line as the declaration
Loading history...
69
        $parser = new ConsoleOptionParser('console');
70
        $parser->description(
0 ignored issues
show
Bug introduced by
The method description() does not exist on Cake\Console\ConsoleOptionParser. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

70
        $parser->/** @scrutinizer ignore-call */ 
71
                 description(

This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.

This is most likely a typographical error or the method has been renamed.

Loading history...
71
            'This shell provides a REPL that you can use to interact ' .
72
            'with your application in an interactive fashion. You can use ' .
73
            'it to run adhoc queries with your models, or experiment ' .
74
            'and explore the features of CakePHP and your application.' .
75
            "\n\n" .
76
            'You will need to have psysh installed for this Shell to work.'
77
        );
78
79
        return $parser;
80
    }
0 ignored issues
show
Coding Style introduced by
Expected 1 blank line after function; 0 found
Loading history...
81
}
82