Completed
Push — prototype ( d6018b...942ea2 )
by Peter
03:41
created
examples/simple/public/route-bind-invokable-class/index.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
 use WebinoAppLib\Router\DefaultRoute;
10 10
 use Zend\ModuleManager\Listener\AbstractListener;
11 11
 
12
-require __DIR__ . '/../../vendor/autoload.php';
12
+require __DIR__.'/../../vendor/autoload.php';
13 13
 
14 14
 /**
15 15
  * Custom invokable listener
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
 {
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
 
44 44
 $app = Webino::application($config)->bootstrap();
45 45
 
46
-$app->bind(DefaultRoute::class, function (RouteEvent $event) {
46
+$app->bind(DefaultRoute::class, function(RouteEvent $event) {
47 47
     $event->setResponseContent([
48 48
         new Html\Text('Use Command Line Interface!'),
49 49
         new ConsolePreview('preview.gif'),
Please login to merge, or discard this patch.
examples/simple/public/console-progress/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
 {
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
 
44 44
 $app = Webino::application($config)->bootstrap();
45 45
 
46
-$app->bind(DefaultRoute::class, function (RouteEvent $event) {
46
+$app->bind(DefaultRoute::class, function(RouteEvent $event) {
47 47
     $event->setResponseContent([
48 48
         new Html\Text('Use Command Line Interface!'),
49 49
         new ConsolePreview('preview.gif'),
Please login to merge, or discard this patch.
examples/simple/public/console-padding/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
 {
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
 
43 43
 $app = Webino::application($config)->bootstrap();
44 44
 
45
-$app->bind(DefaultRoute::class, function (RouteEvent $event) {
45
+$app->bind(DefaultRoute::class, function(RouteEvent $event) {
46 46
     $event->setResponseContent([
47 47
         new Html\Text('Use Command Line Interface!'),
48 48
         new ConsolePreview('preview.jpg'),
Please login to merge, or discard this patch.
examples/simple/public/console-checkboxes-assoc/index.php 1 patch
Spacing   +3 added lines, -3 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
 {
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
         $input  = $cli->checkboxes('Please send me all of the following:', $options);
35 35
         $result = $input->prompt();
36 36
 
37
-        $cli->br()->out('The answer is: <bold>' . join(', ', $result) . '</bold>')->br();
37
+        $cli->br()->out('The answer is: <bold>'.join(', ', $result).'</bold>')->br();
38 38
     }
39 39
 }
40 40
 
@@ -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->setResponseContent([
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-input-multi-line/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
 {
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
 
44 44
 $app = Webino::application($config)->bootstrap();
45 45
 
46
-$app->bind(DefaultRoute::class, function (RouteEvent $event) {
46
+$app->bind(DefaultRoute::class, function(RouteEvent $event) {
47 47
     $event->setResponseContent([
48 48
         new Html\Text('Use Command Line Interface!'),
49 49
         new ConsolePreview('preview.gif'),
Please login to merge, or discard this patch.
examples/simple/public/console-input/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
 {
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
 
44 44
 $app = Webino::application($config)->bootstrap();
45 45
 
46
-$app->bind(DefaultRoute::class, function (RouteEvent $event) {
46
+$app->bind(DefaultRoute::class, function(RouteEvent $event) {
47 47
     $event->setResponseContent([
48 48
         new Html\Text('Use Command Line Interface!'),
49 49
         new ConsolePreview('preview.gif'),
Please login to merge, or discard this patch.
examples/simple/public/console-radio/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
 {
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
 
44 44
 $app = Webino::application($config)->bootstrap();
45 45
 
46
-$app->bind(DefaultRoute::class, function (RouteEvent $event) {
46
+$app->bind(DefaultRoute::class, function(RouteEvent $event) {
47 47
     $event->setResponseContent([
48 48
         new Html\Text('Use Command Line Interface!'),
49 49
         new ConsolePreview('preview.gif'),
Please login to merge, or discard this patch.
examples/simple/public/console-password/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
 {
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
 
44 44
 $app = Webino::application($config)->bootstrap();
45 45
 
46
-$app->bind(DefaultRoute::class, function (RouteEvent $event) {
46
+$app->bind(DefaultRoute::class, function(RouteEvent $event) {
47 47
     $event->setResponseContent([
48 48
         new Html\Text('Use Command Line Interface!'),
49 49
         new ConsolePreview('preview.gif'),
Please login to merge, or discard this patch.