summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-x[-rw-r--r--]ext/ext_skel.php21
1 files changed, 10 insertions, 11 deletions
diff --git a/ext/ext_skel.php b/ext/ext_skel.php
index adfe76d39c..f796a0d8d6 100644..100755
--- a/ext/ext_skel.php
+++ b/ext/ext_skel.php
@@ -1,4 +1,5 @@
-<?php
+#!/usr/bin/env php
+<?php
/*
+----------------------------------------------------------------------+
| PHP Version 7 |
@@ -91,13 +92,13 @@ function print_success() {
*/
function process_args($argv, $argc) {
$options = [
- 'unix' => 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