Permalink
Cannot retrieve contributors at this time
JMapMyLDAP/tests/3rdparty/CodeSniffer/Standards/Generic/Tests/Commenting/TodoUnitTest.js /
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
executable file
22 lines (17 sloc)
335 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * TODO: Write this comment | |
| * | |
| */ | |
| // TODO: remove this. | |
| alert('test'); | |
| // TODO remove this. | |
| alert('test'); | |
| // todo - remove this. | |
| // Extract info from the array. | |
| // TODO: can this be done faster? | |
| // Extract info from the array (todo: make it faster) | |
| // To do this, use a function! | |
| // notodo! NOTODO! NOtodo! | |
| //TODO. | |
| ?> |