We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26bb090 commit 3e35ba9Copy full SHA for 3e35ba9
.gitignore
@@ -1 +1,2 @@
1
/vendor
2
+/tasks
index.php
@@ -1,6 +1,11 @@
-
<?php
3
+if (php_sapi_name() !== "cli")
4
+{
5
+ echo "PHP Android CLI can only run through CLI.";
6
+ exit();
7
+}
8
+
9
require_once __DIR__ . '/vendor/autoload.php';
10
require __DIR__ . '/GenerateCommand.php';
11
0 commit comments