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 82fe71b commit 4001603Copy full SHA for 4001603
tests/ContainerTest.php
@@ -52,6 +52,10 @@ public function testGet(){
52
// custom getter
53
$container->test6 = 'foo';
54
$this->assertSame(sha1('foo'), $container->test6);
55
+ // nullable/isset test
56
+ $container->test6 = null;
57
+ $this->assertFalse(isset($container->test6));
58
+ $this->assertSame('null', $container->test6);
59
}
60
61
public function testSet(){
0 commit comments