AbstractCommand::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 3
rs 10
c 0
b 0
f 0
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
}