Eris\Generator\GeneratedValue::input PHP Méthode

input() public méthode

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

Usage Example

Exemple #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