get() public méthode

Get the final result from the collector.
public get ( ) : mixed
Résultat mixed Whatever the result of this collector is.
Exemple #1
0
 public function collect(Collector $collector)
 {
     foreach ($this as $key => $value) {
         $collector->add($key, $value);
     }
     return $collector->get();
 }