コード例 #1
0
ファイル: Request.php プロジェクト: Mosaic/Mosaic
 /**
  * {@inheritdoc}
  */
 public function header(string $key = null, $default = null)
 {
     return Arr::unwrap($this->wrapped->getHeader($key), $default);
 }
コード例 #2
0
ファイル: ArrTest.php プロジェクト: Mosaic/Mosaic
 public function test_it_returns_a_default_value_for_empty_arrays()
 {
     $this->assertEquals('bar', Arr::unwrap([], 'bar'));
 }