Passed
Pull Request — master (#10)
by F
03:03
created
src/LocalisationRegistrar.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -226,7 +226,7 @@  discard block
 block discarded – undo
226 226
             $this->addresses = $this->cache->remember(
227 227
                 self::$cacheKey.'.addresses',
228 228
                 self::$cacheExpirationTime,
229
-                function () {
229
+                function() {
230 230
                     return $this->getAddressModel()
231 231
                         //->with('system_address_types')
232 232
                         ->get();
@@ -257,7 +257,7 @@  discard block
 block discarded – undo
257 257
             $this->languages = $this->cache->remember(
258 258
                 self::$cacheKey,
259 259
                 self::$cacheExpirationTime,
260
-                function () {
260
+                function() {
261 261
                     return $this->getLanguageClass()
262 262
                     //->with('countries')
263 263
                         ->get();
Please login to merge, or discard this patch.
src/Database/Factories/CountryFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
  */
16 16
 $factory->define(
17 17
     Country::class,
18
-    function (Faker $faker) {
18
+    function(Faker $faker) {
19 19
         return [
20 20
             'name' => $faker->word,
21 21
             'iso' => $faker->word,
Please login to merge, or discard this patch.
src/Database/Factories/CurrencyFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
  */
16 16
 $factory->define(
17 17
     Currency::class,
18
-    function (Faker $faker) {
18
+    function(Faker $faker) {
19 19
         return [
20 20
             'name' => $faker->word,
21 21
             'iso' => $faker->word,
Please login to merge, or discard this patch.
src/Database/Factories/Address/TypeFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
  */
16 16
 $factory->define(
17 17
     Type::class,
18
-    function (Faker $faker) {
18
+    function(Faker $faker) {
19 19
         return [
20 20
             'country_id' => $faker->word,
21 21
             'type_id' => $faker->word,
Please login to merge, or discard this patch.
src/Database/Factories/LanguageFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
  */
16 16
 $factory->define(
17 17
     Language::class,
18
-    function (Faker $faker) {
18
+    function(Faker $faker) {
19 19
         return [
20 20
             'name' => $faker->word,
21 21
             'locale' => $faker->word,
Please login to merge, or discard this patch.
src/Database/Factories/AddressFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
  */
16 16
 $factory->define(
17 17
     Address::class,
18
-    function (Faker $faker) {
18
+    function(Faker $faker) {
19 19
         return [
20 20
             'country_id' => $faker->word,
21 21
             'type_id' => $faker->word,
Please login to merge, or discard this patch.