@@ -30,12 +30,12 @@ |
||
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', |
@@ -18,7 +18,7 @@ discard block |
||
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 |
||
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 |