
Public Member Functions | |
| doSomethingCool ($strName="hi", exampleSecond $obSecond=null, exampleSecond $objLastOne=null) | |
| hardWork () | |
Static Protected Attributes | |
| static | $arrParadas = array() |
Static Private Member Functions | |
| static | doNothing () |
Private Attributes | |
| $strName | |
Definition at line 15 of file test1.php.
| static doNothing | ( | ) | [static, private] |
| doSomethingCool | ( | $ | strName = "hi", |
|
| exampleSecond $ | obSecond = null, |
|||
| exampleSecond $ | objLastOne = null | |||
| ) | [final] |
Will do something cool
Definition at line 31 of file test1.php.
References $strName, doNothing(), and print.
Referenced by hardWork().
00032 { 00033 $this->strName = $strName; 00034 print "i change the name to " . $this->strName; 00035 $this->doNothing(); 00036 }
| hardWork | ( | ) |
Definition at line 43 of file test1.php.
References doSomethingCool().
00044 { 00045 for( $i = 0 ; $i < 20 ; $i++ ) 00046 { 00047 $this->doSomethingCool( $i ); 00048 } 00049 }
$strName [private] |
1.5.9