-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
for real this time update to readme updates to unit-test's Test class VarDump - objects - list properties before methods VarDump - tables - remove deprecated html attributes / move vertical alignment to css. fixed nested array bug
- Loading branch information
Showing
5 changed files
with
76 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,61 @@ | ||
<?php | ||
|
||
namespace bdk\Debug; | ||
|
||
define('SOMECONSTANT', 'Constant value'); | ||
|
||
/** | ||
* Test | ||
*/ | ||
class Test | ||
{ | ||
|
||
/** | ||
* Test var comment | ||
*/ | ||
public $propPublic = 'iAmPublic'; | ||
private $propPrivate = 'iAmPrivate'; | ||
private $propProtected = 'iAmProtected'; | ||
protected $propProtected = 'iAmProtected'; | ||
|
||
/** | ||
* This method is public | ||
* | ||
* @param mixed $param1 first param (passed by ref) | ||
* @param mixed $param2 second param (passed by ref) | ||
* two-line description! | ||
* @param array $param3 third param | ||
* | ||
* @return void | ||
* @deprecated | ||
*/ | ||
public function methodPublic(&$param1, &$param2 = SOMECONSTANT, array $param3 = array()) | ||
{ | ||
|
||
} | ||
|
||
/** | ||
* This method is private | ||
* | ||
* @param mixed $param1 first param | ||
* @param boolean $moreParams variadic param | ||
* | ||
* @return void | ||
*/ | ||
private function methodPrivate($param1, ...$moreParams) | ||
{ | ||
|
||
} | ||
|
||
/** | ||
* This method is protected | ||
* | ||
* @param mixed $param1 first param | ||
* @param mixed $moreParams variadic param by reference | ||
* | ||
* @return void | ||
*/ | ||
protected function methodProtected($param1, &...$moreParams) | ||
{ | ||
|
||
} | ||
} |