예제 #1
0
 public function has($key)
 {
     return Arr::has($this->items, $key);
 }
예제 #2
0
파일: ArrTest.php 프로젝트: laradic/support
 public function testCanCheckIfHasValue()
 {
     $under = Arr::has($this->array, 'foo');
     $this->assertTrue($under);
 }