Passed
Push — master ( 484e36...59734e )
by Jakub
01:04
created
tests/Nexendrie/Translation/Loaders/PhpLoaderTest.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -12,10 +12,8 @@
 block discarded – undo
12 12
  * @author Jakub Konečný
13 13
  * @testCase
14 14
  */
15
-final class PhpLoaderTest extends FileLoaderTestAbstract
16
-{
17
-    protected function setUp()
18
-    {
15
+final class PhpLoaderTest extends FileLoaderTestAbstract {
16
+    protected function setUp() {
19 17
         $folders = [__DIR__ . "/../../../lang", __DIR__ . "/../../../lang2"];
20 18
         $this->loader = new PhpLoader(new ManualLocaleResolver(), $folders);
21 19
     }
Please login to merge, or discard this patch.
tests/Nexendrie/Translation/Loaders/NeonLoaderTest.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -11,10 +11,8 @@
 block discarded – undo
11 11
  * @author Jakub Konečný
12 12
  * @testCase
13 13
  */
14
-final class NeonLoaderTest extends FileLoaderTestAbstract
15
-{
16
-    protected function setUp()
17
-    {
14
+final class NeonLoaderTest extends FileLoaderTestAbstract {
15
+    protected function setUp() {
18 16
         $folders = [__DIR__ . "/../../../lang", __DIR__ . "/../../../lang2"];
19 17
         $this->loader = new NeonLoader(new ManualLocaleResolver(), $folders);
20 18
     }
Please login to merge, or discard this patch.
tests/Nexendrie/Translation/Loaders/MessagesCatalogueTest.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,8 +13,7 @@
 block discarded – undo
13 13
  * @author Jakub Konečný
14 14
  * @testCase
15 15
  */
16
-final class MessagesCatalogueTest extends FileLoaderTestAbstract
17
-{
16
+final class MessagesCatalogueTest extends FileLoaderTestAbstract {
18 17
     protected function setUp(): void
19 18
     {
20 19
         $folders = [__DIR__ . "/../../../lang", __DIR__ . "/../../../lang2"];
Please login to merge, or discard this patch.
tests/Nexendrie/Translation/Bridges/NetteDI/ProviderExtension.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,8 +10,7 @@
 block discarded – undo
10 10
  *
11 11
  * @author Jakub Konečný
12 12
  */
13
-final class ProviderExtension extends CompilerExtension implements TranslationProvider
14
-{
13
+final class ProviderExtension extends CompilerExtension implements TranslationProvider {
15 14
     /**
16 15
      * @return string[]
17 16
      */
Please login to merge, or discard this patch.
tests/Nexendrie/Translation/CustomMessageSelector.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,8 +11,7 @@
 block discarded – undo
11 11
  *
12 12
  * @author Jakub Konečný
13 13
  */
14
-final class CustomMessageSelector implements IMessageSelector
15
-{
14
+final class CustomMessageSelector implements IMessageSelector {
16 15
     public function isMultiChoice(string $message): bool
17 16
     {
18 17
         return is_string(Intervals::findInterval($message));
Please login to merge, or discard this patch.