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