We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d20c38 commit 5007099Copy full SHA for 5007099
tests/UtilTest.php
@@ -49,11 +49,11 @@ public function testStudly()
49
public function testArrayExcept()
50
{
51
$testArray = [
52
- 'first' => 'First',
53
- 'second' => 'second',
54
- 'third' => 'third',
55
- 'fourth' => 'fourth',
56
- ];
+ 'first' => 'First',
+ 'second' => 'second',
+ 'third' => 'third',
+ 'fourth' => 'fourth',
+ ];
57
$this->assertArrayHasKey('first', $testArray);
58
$this->assertArrayNotHasKey('first', Util::arrayExcept($testArray, ['first']));
59
$this->assertArrayNotHasKey('third', Util::arrayExcept($testArray, ['third']));
0 commit comments