toArray() public méthode

public toArray ( ) : array
Résultat array the list of items in stack
Exemple #1
0
 public function testPush()
 {
     $stack = new TStack();
     $stack->push(1);
     self::assertEquals(array(1), $stack->toArray());
 }