scriptbox

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

StandardArray.class.php (333B)


      1 <?php
      2 namespace dsl\standard;
      3 
      4 use dsl\context\BaseScriptableObject;
      5 
      6 class StandardArray extends BaseScriptableObject
      7 {
      8 	public function of() {
      9 
     10 		return func_get_args();
     11 	}
     12 
     13 
     14 	public function __toString()
     15 	{
     16 		return "Arrays:Object";
     17 	}
     18 
     19 	/**
     20 	 * @return string
     21 	 */
     22 	public function help()
     23 	{
     24 		return Helper::getHelp($this);
     25 	}
     26 }