Showing 38 of 38 total issues
Method execute
has 29 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function execute(Request &$request)
{
$this->init();
$header = array();
$reqHeaders = $request->getHeaders();
Function updateFromConfig
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
public function updateFromConfig()
{
// Begin transation
$this->pdo->beginTransaction();
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function connect
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
public function connect($host, $username, $password = '', $port = 22)
{
// Start connection
if (!($this->connection = @ssh2_connect($host, $port))) {
throw new DualityException(
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method getSelect
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
$fields, $from, $where = '', $groupby = '', $limit = 0, $offset = 0
Method setSMTP
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
$host, $user = '', $pass = '', $encr = 'tls', $port = 587, $debugLevel = 0
Method connectSSH
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
$host,
$username,
$password = '',
$port = 22,
$paraphrase = null,
Method getSelect
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
$fields, $from, $where = '', $groupby = '', $limit = 0, $offset = 0
Function send
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
public function send(\Closure $callback)
{
$mail = new PHPMailer;
// Setup SMTP
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method getSelect
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
$fields, $from, $where = '', $groupby = '', $limit = 0, $offset = 0
Method __construct
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
$key, $value, $filters, $pass = '', $fail = ''
Method find
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
$offset = 0, $limit = 10, $where = '', $values = array(), $select = '*'
Function listen
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
public function listen()
{
$notfound = true;
foreach ($this->responders as $ns => $cb) {
foreach ($this->argv as $item) {
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function load
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
public function load(\Closure $callback = null)
{
if (is_resource($this->handler) && filesize($this->getPath()) > 0) {
rewind($this->handler);
$length = filesize($this->getPath()) < 4096 ?
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function reloadFromConfig
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
public function reloadFromConfig($config)
{
$this->schema = $config;
if (!isset($this->schema['create'])) {
$this->schema['create'] = array();
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function encrypt
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
public function encrypt($data)
{
// Set defaults
$algo = 'sha256';
$salt = '';
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function init
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
public function init()
{
if (!extension_loaded('intl')) {
throw new DualityException(
"Error: intl extension not loaded",
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function __construct
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
public function __construct(Database $db)
{
$this->properties = new Storage;
if (!empty($this->config['name'])) {
$this->setName($this->config['name']);
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function importArray
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
public function importArray($data)
{
foreach ($data as $key => $item) {
$row = new TableRow($this);
foreach ($this->getColumns() as $col => $prop) {
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"