update inbox list
This commit is contained in:
19
vendor/scrivo/highlight.php/test/markup/php/comments.txt
vendored
Normal file
19
vendor/scrivo/highlight.php/test/markup/php/comments.txt
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @param int $a
|
||||
* @return bool
|
||||
*/
|
||||
function isEven($a) {
|
||||
return ($a % 2) === 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* TODO: Rely on isEven, but do not highlight bug.
|
||||
*
|
||||
* @param int $a
|
||||
* @return bool
|
||||
*/
|
||||
function isOdd($a) {
|
||||
return ($a % 2) === 1;
|
||||
}
|
||||
Reference in New Issue
Block a user