Completed
Push — prototype ( aec713...9dff07 )
by Peter
03:00
created
examples/simple/public/console-input-accept/index.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
 use WebinoExamplesLib\Html\ConsolePreview;
14 14
 use WebinoHtmlLib\Html;
15 15
 
16
-require __DIR__ . '/../../vendor/autoload.php';
16
+require __DIR__.'/../../vendor/autoload.php';
17 17
 
18 18
 class MyConsoleCommand extends AbstractConsoleCommand
19 19
 {
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 
45 45
 $app = Webino::application($config)->bootstrap();
46 46
 
47
-$app->bind(DefaultRoute::class, function (RouteEvent $event) {
47
+$app->bind(DefaultRoute::class, function(RouteEvent $event) {
48 48
     $event->setResponse([
49 49
         new Html\Text('Use Command Line Interface!'),
50 50
         new ConsolePreview('preview.gif'),
Please login to merge, or discard this patch.
examples/simple/public/console-flank/index.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
 use WebinoExamplesLib\Html\ConsolePreview;
14 14
 use WebinoHtmlLib\Html;
15 15
 
16
-require __DIR__ . '/../../vendor/autoload.php';
16
+require __DIR__.'/../../vendor/autoload.php';
17 17
 
18 18
 class MyConsoleCommand extends AbstractConsoleCommand
19 19
 {
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
 
54 54
 $app = Webino::application($config)->bootstrap();
55 55
 
56
-$app->bind(DefaultRoute::class, function (RouteEvent $event) {
56
+$app->bind(DefaultRoute::class, function(RouteEvent $event) {
57 57
     $event->setResponse([
58 58
         new Html\Text('Use Command Line Interface!'),
59 59
         new ConsolePreview('preview.jpg'),
Please login to merge, or discard this patch.
examples/simple/public/console-progress-labels/index.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
 use WebinoExamplesLib\Html\ConsolePreview;
14 14
 use WebinoHtmlLib\Html;
15 15
 
16
-require __DIR__ . '/../../vendor/autoload.php';
16
+require __DIR__.'/../../vendor/autoload.php';
17 17
 
18 18
 class MyConsoleCommand extends AbstractConsoleCommand
19 19
 {
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 
45 45
 $app = Webino::application($config)->bootstrap();
46 46
 
47
-$app->bind(DefaultRoute::class, function (RouteEvent $event) {
47
+$app->bind(DefaultRoute::class, function(RouteEvent $event) {
48 48
     $event->setResponse([
49 49
         new Html\Text('Use Command Line Interface!'),
50 50
         new ConsolePreview('preview.gif'),
Please login to merge, or discard this patch.