Operator::__construct PHP Method

__construct() public method

public __construct ( )
        public function __construct()
        {
        }

Usage Example

Esempio n. 1
0
 public function __construct($limit, $skip = 0)
 {
     if ($skip == 0) {
         $value = $limit;
     } else {
         $value = [$skip, $limit];
     }
     parent::__construct('$slice', $value);
 }
All Usage Examples Of Operator::__construct