AbstractCommand   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 10
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
3
/**
4
 * @file AbstractCommand.php
5
 * @brief This file contains the AbstractCommand class.
6
 * @details
7
 * @author Filippo F. Fadda
8
 */
9
10
11
//! This is the Commands namespace
12
namespace Facebook\ObjectDebugger\Command;
13
14
15
use Symfony\Component\Console\Command\Command;
16
17
18
/**
19
 * @brief This class represents an abstract command that implements the InjectionAwareInterface to automatic set the
20
 * Phalcon Dependency Injector and make it available to every subclasses.
21
 * @nosubgrouping
22
 */
23
abstract class AbstractCommand extends Command {
24
25
  /**
26
   * @brief Creates an instance of the command.
27
   */
28
  public function __construct() {
29
    parent::__construct();
30
  }
31
32
}