Skip to content

Commit

Permalink
Moved some members as public for closures
Browse files Browse the repository at this point in the history
  • Loading branch information
amercier committed Mar 28, 2014
1 parent 9ba32b6 commit c58b7b1
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions src/Cli/Helpers/Script.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,13 @@
*/
class Script
{
protected $name;
protected $version;
protected $description;
protected $copyright;
protected $parameters = array();
protected $parameterDescriptions = array();
public $name;
public $version;
public $description;
public $copyright;
public $parameters = array();
public $parameterDescriptions = array();

protected $parameterCallbacks = array();
protected $program;
protected $exceptionCatchingEnabled = true;
Expand Down

0 comments on commit c58b7b1

Please sign in to comment.