Eris\Generator\GeneratedValue::input PHP Метод

input() публичный Метод

public input ( ) : GeneratedValue | mixed
Результат 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