Completed
Pull Request — master (#102)
by Litera
11:03
created
app/models/ProgramModel.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -488,7 +488,7 @@
 block discarded – undo
488 488
 			$inner_html = "<tr>\n";
489 489
 			$inner_html .= " <td class=\"label\">Obsazenost programu:</td>\n";
490 490
 			$inner_html .= " <td class=\"text\">".$countData['visitors']."/".$capacity."</td>\n";
491
-		    $inner_html .= "</tr>\n";
491
+			$inner_html .= "</tr>\n";
492 492
 		}
493 493
 		else $inner_html = "";
494 494
 
Please login to merge, or discard this patch.
app/bootstrap.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -40,9 +40,9 @@  discard block
 block discarded – undo
40 40
 	->register();
41 41
 
42 42
 if ($configurator->isDebugMode()) {
43
-    $configurator->addConfig(__DIR__ . '/config/config.development.neon');
43
+	$configurator->addConfig(__DIR__ . '/config/config.development.neon');
44 44
 } else {
45
-    $configurator->addConfig(__DIR__ . '/config/config.production.neon');
45
+	$configurator->addConfig(__DIR__ . '/config/config.production.neon');
46 46
 }
47 47
 $configurator->addConfig(__DIR__ . '/config/config.local.neon');
48 48
 
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
 RadekDostal\NetteComponents\DateTimePicker\TbDatePicker::register();
53 53
 
54 54
 $configurator->addServices(array(
55
-    'session.session' => $session,
55
+	'session.session' => $session,
56 56
 ));
57 57
 $container = $configurator->createContainer();
58 58
 $parameters = $container->getParameters();
Please login to merge, or discard this patch.
app/components/Forms/Factories/IRegistrationFormFactory.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -10,9 +10,9 @@
 block discarded – undo
10 10
 interface IRegistrationFormFactory
11 11
 {
12 12
 
13
-    /**
14
-     * @return \App\Forms\RegistrationForm
15
-     */
16
-    public function create(): RegistrationForm;
13
+	/**
14
+	 * @return \App\Forms\RegistrationForm
15
+	 */
16
+	public function create(): RegistrationForm;
17 17
 
18 18
 }
Please login to merge, or discard this patch.