Autofix line endings

[MAILPOET-2715]
This commit is contained in:
Jan Jakeš
2020-02-17 10:36:31 +01:00
committed by Jack Kitterhing
parent d9db919651
commit 0dcdf6e9f1
25 changed files with 19 additions and 25 deletions

View File

@@ -1,3 +1,3 @@
<?php <?php
// Silence is golden // Silence is golden

View File

@@ -20,4 +20,4 @@ class PersonalDataErasers {
return $erasers; return $erasers;
} }
} }

View File

@@ -55,4 +55,3 @@ class StatsNotificationsRepository extends Repository {
} }
} }

View File

@@ -5,4 +5,4 @@ namespace MailPoet\Models;
class Log extends Model { class Log extends Model {
public static $_table = MP_LOG_TABLE; public static $_table = MP_LOG_TABLE;
} }

View File

@@ -26,4 +26,4 @@ class LayoutHelper {
'blocks' => $blocks, 'blocks' => $blocks,
]; ];
} }
} }

View File

@@ -29,4 +29,4 @@ class OpenTracking {
}); });
return true; return true;
} }
} }

View File

@@ -78,4 +78,4 @@ class Preprocessor {
], $styles), ], $styles),
]; ];
} }
} }

View File

@@ -13,4 +13,4 @@ class Charsets {
'ISO-8859-15', 'Windows-1251', 'Windows-1252', 'ISO-8859-15', 'Windows-1251', 'Windows-1252',
]; ];
} }
} }

View File

@@ -219,4 +219,4 @@ class Hosts {
public static function getSMTPHosts() { public static function getSMTPHosts() {
return static::$_smtp; return static::$_smtp;
} }
} }

View File

@@ -90,4 +90,3 @@ class PermanentNotices {
} }
} }

View File

@@ -26,4 +26,3 @@ class ConfirmConfirmationPageCest {
$i->waitForText($postContent); $i->waitForText($postContent);
} }
} }

View File

@@ -84,4 +84,3 @@ class SubscribeOnRegistrationPageCest {
$i->seeNoJSErrors(); $i->seeNoJSErrors();
} }
} }

View File

@@ -2,4 +2,3 @@
$dotenv = Dotenv\Dotenv::create(__DIR__ . '/../..'); $dotenv = Dotenv\Dotenv::create(__DIR__ . '/../..');
$dotenv->load(); $dotenv->load();

View File

@@ -46,4 +46,4 @@ class NewslettersResponseBuilderTest extends \MailPoetTest {
$em->remove($newsletter); $em->remove($newsletter);
$em->flush(); $em->flush();
} }
} }

View File

@@ -129,4 +129,3 @@ class CapabilitiesTest extends \MailPoetTest {
} }
} }

View File

@@ -8,4 +8,4 @@ class BulkActionClassStub {
} }
} }

View File

@@ -8,4 +8,4 @@ class DynamicListingsHandlerMock {
} }
} }

View File

@@ -12,4 +12,4 @@ class FinderMock {
} }
} }

View File

@@ -8,4 +8,4 @@ class SubscribersBulkActionHandlerMock {
} }
} }

View File

@@ -242,4 +242,4 @@ if (!function_exists('get_woocommerce_currency')) {
function get_woocommerce_currency() { function get_woocommerce_currency() {
return 'USD'; return 'USD';
} }
} }

View File

@@ -42,4 +42,4 @@ class ErrorResponseTest extends \MailPoetUnitTest {
public function _after() { public function _after() {
WPFunctions::set(new WPFunctions); WPFunctions::set(new WPFunctions);
} }
} }

View File

@@ -65,4 +65,4 @@ class PreprocessorTest extends \MailPoetUnitTest {
]]); ]]);
} }
} }

View File

@@ -58,4 +58,4 @@ class HelpersTest extends \MailPoetUnitTest {
'number' => 523, 'number' => 523,
]); ]);
} }
} }

View File

@@ -34,4 +34,4 @@ class SecurityTest extends \MailPoetUnitTest {
public function testItGeneratesRandomHashWithCustomLength() { public function testItGeneratesRandomHashWithCustomLength() {
expect(strlen(Security::generateHash(10)))->equals(10); expect(strlen(Security::generateHash(10)))->equals(10);
} }
} }

View File

@@ -16,4 +16,4 @@ class UrlTest extends \MailPoetUnitTest {
$currentUrl = $urlHelper->getCurrentUrl(); $currentUrl = $urlHelper->getCurrentUrl();
expect($currentUrl)->equals($homeUrl); expect($currentUrl)->equals($homeUrl);
} }
} }