Completed
Push — prototype ( 6656fa...b19a91 )
by Peter
09:27 queued 05:52
created
examples/simple/public/console-columns/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
 {
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
 
80 80
 $app = Webino::application($config)->bootstrap();
81 81
 
82
-$app->bind(DefaultRoute::class, function (RouteEvent $event) {
82
+$app->bind(DefaultRoute::class, function(RouteEvent $event) {
83 83
     $event->setResponseContent([
84 84
         new Html\Text('Use Command Line Interface!'),
85 85
         (new ConsolePreview('preview.jpg'))->setHeight(400),
Please login to merge, or discard this patch.
examples/simple/public/console-progress-manually/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/route-bind-aggregate-class/index.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
 use WebinoAppLib\Router\DefaultRoute;
10 10
 use WebinoEventLib\AbstractListener;
11 11
 
12
-require __DIR__ . '/../../vendor/autoload.php';
12
+require __DIR__.'/../../vendor/autoload.php';
13 13
 
14 14
 /**
15 15
  * Custom listener aggregate
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
         /**
22 22
          * Handling default route.
23 23
          */
24
-        $this->listen(DefaultRoute::class, function (RouteEvent $event) {
24
+        $this->listen(DefaultRoute::class, function(RouteEvent $event) {
25 25
             $event->setResponseContent(['Hello Webino!', new SourcePreview(__FILE__)]);
26 26
         });
27 27
     }
Please login to merge, or discard this patch.
examples/simple/public/logger-aware/index.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
 use WebinoLogLib\Message\AbstractWarningMessage;
19 19
 use Zend\Stdlib\Parameters;
20 20
 
21
-require __DIR__ . '/../../vendor/autoload.php';
21
+require __DIR__.'/../../vendor/autoload.php';
22 22
 
23 23
 /**
24 24
  * Custom log message
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
 
113 113
 $app = Webino::application($config)->bootstrap();
114 114
 
115
-$app->bind(DefaultRoute::class, function (RouteEvent $event) {
115
+$app->bind(DefaultRoute::class, function(RouteEvent $event) {
116 116
     /** @var MyService $myService */
117 117
     $myService = $event->getApp()->get(MyService::class);
118 118
 
Please login to merge, or discard this patch.
examples/simple/public/console-radio-assoc/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/logger-filters-priority/index.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
 use WebinoHtmlLib\Html;
12 12
 use WebinoConfigLib\Feature\Log;
13 13
 
14
-require __DIR__ . '/../../vendor/autoload.php';
14
+require __DIR__.'/../../vendor/autoload.php';
15 15
 
16 16
 $config = Webino::config([
17 17
     /**
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 $app->log()->alert('Test alert log message!');
35 35
 $app->log()->emergency('Test emergency log message!');
36 36
 
37
-$app->bind(DefaultRoute::class, function (RouteEvent $event) {
37
+$app->bind(DefaultRoute::class, function(RouteEvent $event) {
38 38
     /**
39 39
      * Obtaining log
40 40
      * file contents.
Please login to merge, or discard this patch.
examples/simple/public/console-border/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-input-default/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.