protected function __construct() { $this->array = ArrayUtils::instance(); $this->file = FileUtils::instance(); $this->object = ObjectUtils::instance(); $this->string = StringUtils::instance(); }
public static function getInstance() { if (null === self::$instance) { self::$instance = new self(); } return self::$instance; }