From: Peter Kokot Date: Sat, 26 May 2018 18:23:11 +0000 (+0200) Subject: Enhance the ext_skel.php script file X-Git-Tag: php-7.3.0alpha2~10^2~41 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2788ab9fa6a503c7d51f98a2a544593c5314326d;p=php Enhance the ext_skel.php script file - File is now executable - Shebang added on top - Normal UTF-8 encoding instead of UTF-8 with BOM - trailing whitespaces trimmed as a CS fix - Closing PHP tag removed in favor of readability, avoiding possible issues with whitespaces, and to comply with current CS from the PHP ecosystem - PSRs etc. --- diff --git a/ext/ext_skel.php b/ext/ext_skel.php old mode 100644 new mode 100755 index adfe76d39c..f796a0d8d6 --- a/ext/ext_skel.php +++ b/ext/ext_skel.php @@ -1,4 +1,5 @@ - true, - 'windows' => true, - 'ext' => '', - 'dir' => __DIR__ . DIRECTORY_SEPARATOR, - 'skel' => __DIR__ . DIRECTORY_SEPARATOR . 'skeleton' . DIRECTORY_SEPARATOR, - 'author' => false, - 'experimental' => false, + 'unix' => true, + 'windows' => true, + 'ext' => '', + 'dir' => __DIR__ . DIRECTORY_SEPARATOR, + 'skel' => __DIR__ . DIRECTORY_SEPARATOR . 'skeleton' . DIRECTORY_SEPARATOR, + 'author' => false, + 'experimental' => false, 'std' => false ]; @@ -269,7 +270,7 @@ function copy_sources() { global $options; $files = [ - 'skeleton.c' => $options['ext'] . '.c', + 'skeleton.c' => $options['ext'] . '.c', 'php_skeleton.h' => 'php_' . $options['ext'] . '.h' ]; @@ -359,5 +360,3 @@ task('Copying sources', 'copy_sources'); task('Copying tests', 'copy_tests'); print_success(); - -?> \ No newline at end of file