Skip to content
This repository was archived by the owner on Nov 5, 2022. It is now read-only.

Commit 204803e

Browse files
committed
Unit tests
1 parent 028a092 commit 204803e

File tree

3 files changed

+19
-1
lines changed

3 files changed

+19
-1
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
22

33
if (!$a === true) {} // Fail
4-
if (! $a === true) {} // Fail
4+
if (! $a === true) {} // Pass
55

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?php
2+
3+
if (! $a === true) {} // Fail
4+
if (! $a === true) {} // Pass
5+
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
/**
4+
* Codes
5+
*
6+
* @var array
7+
*/
8+
$codes = [
9+
'created' => 201,
10+
];
11+
12+
$a = 'a';
13+
$array = 'array';

0 commit comments

Comments
 (0)