Peekmo / atom-autocomplete-php

Autocomplete for PHP in atom editor
MIT License
136 stars 34 forks source link

provide php constants #149

Closed SebSept closed 9 years ago

SebSept commented 9 years ago

Php has a lot of predefined constants. PHP_EOL, JSON_PRETTY_PRINT as examples.

I suppose it won't be hard to provide it since we can grab them in php with

get_defined_constants();

http://php.net/manual/en/function.get-defined-constants.php

It could be nice to have theses constants.

Thanks for that package :)

ghost commented 9 years ago

Good idea! I implemented this in pull request #161 .