Skip to content

Commit 19d2749

Browse files
committed
docs: move // comments into PHPDoc
1 parent b2d27c3 commit 19d2749

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

tests/system/HTTP/IncomingRequestTest.php

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,9 @@ public function testMissingOldInput()
107107
$this->assertNull($this->request->getOldInput('pineapple.name'));
108108
}
109109

110-
// Reference: https://github.com/codeigniter4/CodeIgniter4/issues/1492
110+
/**
111+
* @see https://github.com/codeigniter4/CodeIgniter4/issues/1492
112+
*/
111113
public function testCanGetOldInputArray()
112114
{
113115
$_SESSION['_ci_old_input'] = [
@@ -119,9 +121,9 @@ public function testCanGetOldInputArray()
119121
$this->assertSame(['name' => 'foo'], $this->request->getOldInput('banana'));
120122
}
121123

122-
// Reference: https://github.com/codeigniter4/CodeIgniter4/issues/1492
123-
124124
/**
125+
* @see https://github.com/codeigniter4/CodeIgniter4/issues/1492
126+
*
125127
* @runInSeparateProcess
126128
* @preserveGlobalState disabled
127129
*/

0 commit comments

Comments
 (0)