- version 3.6
Check those constraints:
$this->anything()
| diff --git a/node_modules/react-scripts/config/webpack.config.js b/node_modules/react-scripts/config/webpack.config.js | |
| index 25840d9..25c3c41 100644 | |
| --- a/node_modules/react-scripts/config/webpack.config.js | |
| +++ b/node_modules/react-scripts/config/webpack.config.js | |
| @@ -172,7 +172,7 @@ module.exports = function(webpackEnv) { | |
| // The build folder. | |
| path: isEnvProduction ? paths.appBuild : undefined, | |
| // Add /* filename */ comments to generated require()s in the output. | |
| - pathinfo: isEnvDevelopment, | |
| + pathinfo: false, |
| cmake_minimum_required(VERSION 3.8) | |
| project(php C) | |
| # 32bit or 64bit | |
| set(BITNESS 32) | |
| if(CMAKE_SIZEOF_VOID_P EQUAL 8) | |
| set(BITNESS 64) | |
| endif() | |
| # Global definitions |
| <?php | |
| $performGC = false; | |
| if ($performGC) { | |
| echo "GC collection will be done - app should not crash.\n"; | |
| } | |
| else { | |
| echo "GC collection won't be done - app should crash.\n"; |
| <?php | |
| /** | |
| * Represents a MIME content type | |
| * | |
| * @author Chris Wright <[email protected]> | |
| */ | |
| class ContentType | |
| { | |
| /** |
| #!/bin/bash | |
| additional_strace_args="$1" | |
| MASTER_PID=$(ps auwx | grep php-fpm | grep -v grep | grep 'master process' | cut -d ' ' -f 6) | |
| while read -r pid; | |
| do | |
| if [[ $pid != $MASTER_PID ]]; then | |
| nohup strace -r -p "$pid" $additional_strace_args >"$pid.trc" 2>&1 & |