Completed
Pull Request — master (#140)
by Litera
09:52
created
tests/_support/FunctionalTester.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
 */
19 19
 class FunctionalTester extends \Codeception\Actor
20 20
 {
21
-    use _generated\FunctionalTesterActions;
21
+	use _generated\FunctionalTesterActions;
22 22
 
23 23
    /**
24 24
     * Define custom actions here
Please login to merge, or discard this patch.
tests/_support/UnitTester.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
 */
19 19
 class UnitTester extends \Codeception\Actor
20 20
 {
21
-    use _generated\UnitTesterActions;
21
+	use _generated\UnitTesterActions;
22 22
 
23 23
    /**
24 24
     * Define custom actions here
Please login to merge, or discard this patch.
tests/_support/AcceptanceTester.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
 */
19 19
 class AcceptanceTester extends \Codeception\Actor
20 20
 {
21
-    use _generated\AcceptanceTesterActions;
21
+	use _generated\AcceptanceTesterActions;
22 22
 
23 23
    /**
24 24
     * Define custom actions here
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.
app/components/Forms/Factories/IAnnotationFormFactory.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 IAnnotationFormFactory
11 11
 {
12 12
 
13
-    /**
14
-     * @return \App\Forms\AnnotationForm
15
-     */
16
-    public function create(): AnnotationForm;
13
+	/**
14
+	 * @return \App\Forms\AnnotationForm
15
+	 */
16
+	public function create(): AnnotationForm;
17 17
 
18 18
 }
Please login to merge, or discard this patch.
app/components/Forms/Factories/IProgramFormFactory.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 IProgramFormFactory
11 11
 {
12 12
 
13
-    /**
14
-     * @return \App\Forms\ProgramForm
15
-     */
16
-    public function create(): ProgramForm;
13
+	/**
14
+	 * @return \App\Forms\ProgramForm
15
+	 */
16
+	public function create(): ProgramForm;
17 17
 
18 18
 }
Please login to merge, or discard this patch.