Files
Document-Management-System-…/vendor/scrivo/highlight.php/test/markup/php/comments.txt
2021-04-07 19:25:18 -04:00

20 lines
245 B
Plaintext
Vendored

<?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;
}