From 2788ab9fa6a503c7d51f98a2a544593c5314326d Mon Sep 17 00:00:00 2001 From: Peter Kokot Date: Sat, 26 May 2018 20:23:11 +0200 Subject: [PATCH] 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. --- ext/ext_skel.php | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) mode change 100644 => 100755 ext/ext_skel.php 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 -- 2.40.0