Eris\Generator\GeneratedValue::input PHP Method

input() public method

public input ( ) : GeneratedValue | mixed
return GeneratedValue | mixed
    public function input()
    {
        return $this->input;
    }

Usage Example

示例#1
0
 public function contains(GeneratedValue $set)
 {
     foreach ($set->input() as $element) {
         if (!$this->singleElementGenerator->contains($element)) {
             return false;
         }
     }
     return true;
 }
All Usage Examples Of Eris\Generator\GeneratedValue::input