Blame | Letzte Änderung | Log anzeigen | RSS feed
<?phpclass MyClass{public $var1 = 'value';public $var2 = 'value';public $var3 = 'value';}//end classinterface MyInterface{public $var1 = 'value';public $var2 = 'value';protected $var3 = 'value';}//end interfaceclass MyClass{public $var1 = 'value';private $var2 = 'value';protected $var3 = 'value';}//end classclass MyClass{public $var1 = 'value';}//end classinterface MyInterface{public $var1 = 'value';function myFunction();}//end interfaceclass MyClass{/*** The actions that this wizard step requires.** @var array* @since 4.0.0*/protected $actions = array();/*** TRUE if this step should be performed after the asset is created.** @var boolean* @since 4.0.0*/protected $postStep = FALSE;}//end classclass MyClass{/*** The actions that this wizard step requires.** @var array* @since 4.0.0*/protected $actions = array();}//end classclass MyClass{/*** The actions that this wizard step requires.** @var array* @since 4.0.0*/protected $actions = array();/*** The actions that this wizard step requires.** @var array* @since 4.0.0*/protected $actions = array();}//end class?>