https://github.com/ovr/ppp
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ovr/ppp
- Owner: ovr
- Created: 2016-02-09T18:16:36.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-02-09T18:40:26.000Z (over 9 years ago)
- Last Synced: 2025-01-13T09:08:34.546Z (5 months ago)
- Language: PHP
- Size: 2.93 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
PPP (3P) PHP PreProcessor
=========================> Current status: prototyping
Remove unneeded code for production builds
```
/**
* @dev
*/
if ($env == Application::ENV_PRODUCTION) {
// Code....
}
``````
function getMyRouterConfigs() {
return [
'cache' => ($env == Application::ENV_PRODUCTION) // @production(true)
]
}
```