Exemplo n.º 1
0
 public function testGet()
 {
     $instance = new Collection(['item' => 'data']);
     $this->assertSame('data', $instance->get('item'));
     $this->assertNull($instance->get('reference'));
 }