We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f451a6a commit 3d23644Copy full SHA for 3d23644
src/PatternLab/Console/Command.php
@@ -10,16 +10,22 @@
10
11
namespace PatternLab\Console;
12
13
+use \PatternLab\Config;
14
+use \PatternLab\Console;
15
use \PatternLab\Timer;
16
17
class Command {
18
19
+ protected $pathPHP;
20
+ protected $pathConsole;
21
+
22
/**
23
* Set-up a default var
24
*/
25
public function __construct() {
26
- // nothing here yet
27
+ $this->pathPHP = Console::getPathPHP();
28
+ $this->pathConsole = Console::getPathConsole();
29
30
}
31
0 commit comments