Showing 12 of 34 total issues
SshPhpseclibAdapter
has 44 functions (exceeds 20 allowed). Consider refactoring. Open
class SshPhpseclibAdapter implements SshAdapterInterface
{
/**
* The phpseclib ssh client.
Method run
has 81 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function run()
{
$ssh = call_user_func(
[$this->sshFactory, 'create'],
Method run
has 63 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function run()
{
try {
$ssh = call_user_func(
[$this->sshFactory, 'create'],
Method getDumpCommandLine
has 32 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function getDumpCommandLine($outputPath)
{
$this->config += [
'ignoreTables' => [],
'structureTables' => [],
Function run
has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring. Open
public function run()
{
try {
$ssh = call_user_func(
[$this->sshFactory, 'create'],
- 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 run
has 31 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function run()
{
$sftp = call_user_func([$this->SFTPFactory, 'create'], $this->host, $this->auth, $this->port, $this->timeout);
$errorMessage = '';
foreach ($this->commandStack as $command) {
Method run
has 28 lines of code (exceeds 25 allowed). Consider refactoring. Open
public function run()
{
try {
/**
* The backup manager
Function cleanDir
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
protected function cleanDir($dir, $keep)
{
$finder = clone $this->finder;
$finder->in($dir);
$finder->depth(0);
- 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 expandTableNames
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
protected function expandTableNames()
{
if (empty($this->tableList)) {
$dsn = 'mysql:host=' . $this->config['host']
. ';port=' . $this->config['port']
- 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 digipolisPushPackage
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
$user,
$host,
$package,
$destination = null,
$opts = [
Function doSort
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
protected function doSort(Finder $finder)
{
switch ($this->sort) {
case static::SORT_NAME:
$finder->sortByName();
- 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 run
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
public function run()
{
$sftp = call_user_func([$this->SFTPFactory, 'create'], $this->host, $this->auth, $this->port, $this->timeout);
$errorMessage = '';
foreach ($this->commandStack as $command) {
- 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"