Improved coding styles

This commit is contained in:
Alejandro Celaya
2017-10-12 10:13:20 +02:00
parent fbeb959317
commit c422a14c5c
219 changed files with 473 additions and 26 deletions

View File

@@ -1,4 +1,6 @@
<?php
declare(strict_types=1);
namespace ShlinkioTest\Shlink\Common\Factory;
use Doctrine\Common\Cache\ApcuCache;
@@ -88,11 +90,11 @@ class CacheFactoryTest extends TestCase
$servers = [
[
'host' => '1.2.3.4',
'port' => 123
'port' => 123,
],
[
'host' => '4.3.2.1',
'port' => 321
'port' => 321,
],
];
/** @var MemcachedCache $instance */