Skip to content

Commit 013397d

Browse files
committed
refactor: Fixed some deprecated notice #8
1 parent 258c69c commit 013397d

File tree

4 files changed

+9
-0
lines changed

4 files changed

+9
-0
lines changed

src/Commands/Common/NewCommand.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,13 @@ class NewCommand extends PWConnector {
4141
private $projectName;
4242
private $projectDir;
4343
private $version;
44+
private $helper;
4445
private $compressedFilePath;
4546
private $requirementsErrors = array();
47+
private $src;
4648
private $installer;
49+
private $verbose;
50+
protected $downloader;
4751
protected $tools;
4852

4953
/**

src/Commands/Common/ServeCommand.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
*/
2020
class ServeCommand extends PwConnector {
2121

22+
private $helper = null;
23+
24+
2225
/**
2326
* Configures the current command.
2427
*/

src/Helpers/Downloader.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ class Downloader {
2525
private $version;
2626
private $output;
2727
private $tools;
28+
private $compressedFilePath;
2829

2930
/**
3031
* Construct Downloader

src/Helpers/Installer.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
class Installer {
3232

3333
protected $fs = null;
34+
protected $v = true;
3435

3536
/**
3637
* Whether or not we force installed files to be copied.

0 commit comments

Comments
 (0)