コード例 #1
0
ファイル: Request.php プロジェクト: bapcat/request
 /**
  * @return  bool
  */
 protected function getIsJson()
 {
     return $this->headers->get('accept', null) === 'application/json';
 }
コード例 #2
0
 public function testInstantiator()
 {
     $collection = new ReadOnlyCollection();
     $this->assertInstanceOf(ReadOnlyCollection::class, $collection->__new([]));
 }