Completed
Push — prototype ( aec713...9dff07 )
by Peter
03:00
created
library/WebinoExamplesLib/Html/ConsolePreview.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,12 +30,12 @@
 block discarded – undo
30 30
                 'position' => 'absolute',
31 31
                 'left' => '1px',
32 32
                 'top' => '1px',
33
-                'margin' => 0 ,
33
+                'margin' => 0,
34 34
                 'padding' => '8px',
35 35
                 'background' => 'white',
36 36
             ]);
37 37
 
38
-        parent::__construct(new Html\Html($label . new Html\Img($imgSrc)));
38
+        parent::__construct(new Html\Html($label.new Html\Img($imgSrc)));
39 39
 
40 40
         $this->setStyle([
41 41
             'position'   => 'relative',
Please login to merge, or discard this patch.
examples/simple/public/view-credits/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 WebinoViewLib\Feature\CommonView;
19 19
 use WebinoViewLib\Feature\NodeView;
20 20
 
21
-require __DIR__ . '/../../vendor/autoload.php';
21
+require __DIR__.'/../../vendor/autoload.php';
22 22
 
23 23
 class CreditsComponent extends AbstractViewComponent implements OnDispatchInterface
24 24
 {
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
 
133 133
 $app = Webino::application($config)->bootstrap();
134 134
 
135
-$app->bind(DefaultRoute::class, function (RouteEvent $event) {
135
+$app->bind(DefaultRoute::class, function(RouteEvent $event) {
136 136
     $event->setResponse(new ViewResponse);
137 137
 });
138 138
 
Please login to merge, or discard this patch.