2018-10-17 21:52:58 +02:00
|
|
|
<?php
|
2021-12-15 04:58:32 +01:00
|
|
|
|
2018-10-17 21:52:58 +02:00
|
|
|
namespace Psalm\Tests\FileUpdates;
|
|
|
|
|
2021-12-03 20:11:20 +01:00
|
|
|
use Psalm\Config;
|
2018-11-06 03:57:36 +01:00
|
|
|
use Psalm\Internal\Analyzer\ProjectAnalyzer;
|
2021-07-02 01:10:21 +02:00
|
|
|
use Psalm\Internal\Provider\FakeFileProvider;
|
2018-11-06 03:57:36 +01:00
|
|
|
use Psalm\Internal\Provider\Providers;
|
2021-12-03 20:11:20 +01:00
|
|
|
use Psalm\IssueBuffer;
|
2021-12-04 21:55:53 +01:00
|
|
|
use Psalm\Tests\Internal\Provider\FakeFileReferenceCacheProvider;
|
2021-12-03 20:11:20 +01:00
|
|
|
use Psalm\Tests\Internal\Provider\ParserInstanceCacheProvider;
|
|
|
|
use Psalm\Tests\Internal\Provider\ProjectCacheProvider;
|
|
|
|
use Psalm\Tests\TestCase;
|
2019-03-23 19:27:54 +01:00
|
|
|
use Psalm\Tests\TestConfig;
|
2018-10-17 21:52:58 +02:00
|
|
|
|
2021-06-08 04:55:21 +02:00
|
|
|
use function array_keys;
|
|
|
|
use function count;
|
|
|
|
use function getcwd;
|
|
|
|
|
|
|
|
use const DIRECTORY_SEPARATOR;
|
|
|
|
|
2021-12-03 20:11:20 +01:00
|
|
|
class ErrorFixTest extends TestCase
|
2018-10-17 21:52:58 +02:00
|
|
|
{
|
2021-12-05 18:51:26 +01:00
|
|
|
public function setUp(): void
|
2018-10-17 21:52:58 +02:00
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
|
2021-07-02 01:10:21 +02:00
|
|
|
$this->file_provider = new FakeFileProvider();
|
2018-10-17 21:52:58 +02:00
|
|
|
|
|
|
|
$config = new TestConfig();
|
|
|
|
$config->throw_exception = false;
|
|
|
|
|
|
|
|
$providers = new Providers(
|
|
|
|
$this->file_provider,
|
2021-12-03 20:11:20 +01:00
|
|
|
new ParserInstanceCacheProvider(),
|
2018-10-17 21:52:58 +02:00
|
|
|
null,
|
|
|
|
null,
|
2021-12-04 21:55:53 +01:00
|
|
|
new FakeFileReferenceCacheProvider(),
|
2021-12-03 20:11:20 +01:00
|
|
|
new ProjectCacheProvider()
|
2018-10-17 21:52:58 +02:00
|
|
|
);
|
|
|
|
|
2018-11-11 18:01:14 +01:00
|
|
|
$this->project_analyzer = new ProjectAnalyzer(
|
2018-10-17 21:52:58 +02:00
|
|
|
$config,
|
2019-06-09 18:37:28 +02:00
|
|
|
$providers
|
2018-10-17 21:52:58 +02:00
|
|
|
);
|
2021-11-27 01:06:33 +01:00
|
|
|
$this->project_analyzer->setPhpVersion('7.3', 'tests');
|
2018-10-17 21:52:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider providerTestErrorFix
|
|
|
|
*
|
2019-05-23 18:53:46 +02:00
|
|
|
* @param array<int, array<string, string>> $files
|
2018-10-17 21:52:58 +02:00
|
|
|
* @param array<int, int> $error_counts
|
2022-11-05 22:34:42 +01:00
|
|
|
* @param array<string, string> $ignored_issues
|
2018-10-17 21:52:58 +02:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
public function testErrorFix(
|
2019-05-23 18:53:46 +02:00
|
|
|
array $files,
|
2018-10-17 21:52:58 +02:00
|
|
|
array $error_counts,
|
2022-11-05 22:34:42 +01:00
|
|
|
array $ignored_issues = []
|
2020-09-12 17:24:05 +02:00
|
|
|
): void {
|
2018-11-11 18:01:14 +01:00
|
|
|
$this->project_analyzer->getCodebase()->diff_methods = true;
|
2018-10-17 21:52:58 +02:00
|
|
|
|
2018-11-11 18:01:14 +01:00
|
|
|
$codebase = $this->project_analyzer->getCodebase();
|
2018-10-17 21:52:58 +02:00
|
|
|
|
|
|
|
$config = $codebase->config;
|
|
|
|
|
2022-11-05 22:34:42 +01:00
|
|
|
foreach ($ignored_issues as $error_type => $error_level) {
|
2018-10-17 21:52:58 +02:00
|
|
|
$config->setCustomErrorLevel($error_type, $error_level);
|
|
|
|
}
|
|
|
|
|
2020-09-03 22:51:43 +02:00
|
|
|
$analyzed_files = [];
|
|
|
|
|
2019-07-05 22:24:00 +02:00
|
|
|
for ($i = 0; $i < count($files); ++$i) {
|
2019-05-23 18:53:46 +02:00
|
|
|
$batch = $files[$i];
|
2018-10-17 21:52:58 +02:00
|
|
|
|
2019-05-23 18:53:46 +02:00
|
|
|
foreach ($batch as $file_path => $contents) {
|
|
|
|
$this->file_provider->registerFile($file_path, $contents);
|
2018-10-17 21:52:58 +02:00
|
|
|
|
2020-09-03 22:51:43 +02:00
|
|
|
if (!isset($analyzed_files[$file_path])) {
|
2019-05-23 18:53:46 +02:00
|
|
|
$codebase->addFilesToAnalyze([$file_path => $file_path]);
|
2020-09-03 22:51:43 +02:00
|
|
|
$analyzed_files[$file_path] = true;
|
2019-05-23 18:53:46 +02:00
|
|
|
}
|
|
|
|
}
|
2018-10-17 21:52:58 +02:00
|
|
|
|
2019-05-23 18:53:46 +02:00
|
|
|
if ($i === 0) {
|
|
|
|
$codebase->scanFiles();
|
|
|
|
} else {
|
|
|
|
$codebase->reloadFiles($this->project_analyzer, array_keys($batch));
|
|
|
|
}
|
2018-10-17 21:52:58 +02:00
|
|
|
|
2019-05-23 18:53:46 +02:00
|
|
|
$codebase->analyzer->analyzeFiles($this->project_analyzer, 1, false);
|
2018-10-17 21:52:58 +02:00
|
|
|
|
2020-01-22 03:07:44 +01:00
|
|
|
$expected_count = 0;
|
|
|
|
|
2021-12-03 20:11:20 +01:00
|
|
|
$data = IssueBuffer::clear();
|
2018-10-17 21:52:58 +02:00
|
|
|
|
2020-01-22 03:07:44 +01:00
|
|
|
foreach ($data as $file_issues) {
|
|
|
|
$expected_count += count($file_issues);
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->assertSame($error_counts[$i], $expected_count);
|
2018-10-17 21:52:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2022-11-05 22:34:42 +01:00
|
|
|
* @return array<string,strict-array{files: array<int, array<string,string>>,error_counts:array<int,int>,ignored_issues?:array<string,string>}>
|
2018-10-17 21:52:58 +02:00
|
|
|
*/
|
2020-09-12 17:24:05 +02:00
|
|
|
public function providerTestErrorFix(): array
|
2018-10-17 21:52:58 +02:00
|
|
|
{
|
|
|
|
return [
|
|
|
|
'fixMissingColonSyntaxError' => [
|
2019-05-23 18:53:46 +02:00
|
|
|
'files' => [
|
|
|
|
[
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class A {
|
|
|
|
public function foo() : void {
|
|
|
|
$a = 5;
|
|
|
|
echo $a;
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class A {
|
|
|
|
public function foo() : void {
|
|
|
|
$a = 5
|
|
|
|
echo $a;
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class A {
|
|
|
|
public function foo() : void {
|
|
|
|
$a = 5;
|
|
|
|
echo $a;
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
2018-10-17 21:52:58 +02:00
|
|
|
],
|
|
|
|
'error_counts' => [0, 1, 0],
|
|
|
|
],
|
|
|
|
'addReturnTypesToSingleMethod' => [
|
2019-05-23 18:53:46 +02:00
|
|
|
'files' => [
|
|
|
|
[
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class A {
|
|
|
|
public function foo() {
|
|
|
|
return 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function bar() {
|
|
|
|
return $this->foo();
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class A {
|
|
|
|
public function foo() : int {
|
|
|
|
return 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function bar() {
|
|
|
|
return $this->foo();
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class A {
|
|
|
|
public function foo() : int {
|
|
|
|
return 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function bar() : int {
|
|
|
|
return $this->foo();
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
2018-10-17 21:52:58 +02:00
|
|
|
],
|
|
|
|
'error_counts' => [2, 1, 0],
|
2022-11-05 22:34:42 +01:00
|
|
|
'ignored_issues' => [
|
2021-12-03 20:11:20 +01:00
|
|
|
'MissingReturnType' => Config::REPORT_INFO,
|
2019-03-23 19:27:54 +01:00
|
|
|
],
|
2018-10-17 21:52:58 +02:00
|
|
|
],
|
2019-04-16 22:07:48 +02:00
|
|
|
'traitMethodRenameFirstCorrect' => [
|
2019-05-23 18:53:46 +02:00
|
|
|
'files' => [
|
|
|
|
[
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class A {
|
|
|
|
use T;
|
|
|
|
public function foo() : void {
|
|
|
|
echo $this->bar();
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'T.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
trait T {
|
|
|
|
public function bar() : string {
|
|
|
|
return "hello";
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class A {
|
|
|
|
use T;
|
|
|
|
public function foo() : void {
|
|
|
|
echo $this->bar();
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'T.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
trait T {
|
|
|
|
public function bat() : string {
|
|
|
|
return "hello";
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class A {
|
|
|
|
use T;
|
|
|
|
public function foo() : void {
|
|
|
|
echo $this->bar();
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'T.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
trait T {
|
|
|
|
public function bar() : string {
|
|
|
|
return "hello";
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
2018-11-20 21:51:47 +01:00
|
|
|
],
|
2020-11-08 17:04:39 +01:00
|
|
|
'error_counts' => [0, 2, 0],
|
2018-11-20 21:51:47 +01:00
|
|
|
],
|
2019-04-16 22:07:48 +02:00
|
|
|
'traitMethodRenameFirstError' => [
|
2019-05-23 18:53:46 +02:00
|
|
|
'files' => [
|
|
|
|
[
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class A {
|
|
|
|
use T;
|
|
|
|
public function foo() : void {
|
|
|
|
echo $this->bar();
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'T.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
trait T {
|
|
|
|
public function bat() : string {
|
|
|
|
return "hello";
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class A {
|
|
|
|
use T;
|
|
|
|
public function foo() : void {
|
|
|
|
echo $this->bar();
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'T.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
trait T {
|
|
|
|
public function bar() : string {
|
|
|
|
return "hello";
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
class A {
|
|
|
|
use T;
|
|
|
|
public function foo() : void {
|
|
|
|
echo $this->bar();
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'T.php' => '<?php
|
|
|
|
namespace Foo;
|
|
|
|
|
|
|
|
trait T {
|
|
|
|
public function bar() : string {
|
|
|
|
return "hello";
|
|
|
|
}
|
|
|
|
}',
|
|
|
|
],
|
2019-04-16 22:07:48 +02:00
|
|
|
],
|
2020-11-08 17:04:39 +01:00
|
|
|
'error_counts' => [2, 0, 0],
|
2019-04-16 22:07:48 +02:00
|
|
|
],
|
2019-04-23 03:50:58 +02:00
|
|
|
'addSuppressions' => [
|
2019-05-23 18:53:46 +02:00
|
|
|
'files' => [
|
|
|
|
[
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
class C {
|
|
|
|
public function foo(array $a) : void {
|
|
|
|
foreach ($a as $b) {
|
|
|
|
$b->bar();
|
|
|
|
}
|
2019-04-23 03:50:58 +02:00
|
|
|
}
|
2019-05-23 18:53:46 +02:00
|
|
|
}',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
class C {
|
|
|
|
public function foo(array $a) : void {
|
|
|
|
/**
|
|
|
|
* @psalm-suppress MixedAssignment
|
|
|
|
*/
|
|
|
|
foreach ($a as $b) {
|
|
|
|
$b->bar();
|
|
|
|
}
|
2019-04-23 03:50:58 +02:00
|
|
|
}
|
2019-05-23 18:53:46 +02:00
|
|
|
}',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
class C {
|
|
|
|
public function foo(array $a) : void {
|
2019-04-23 03:50:58 +02:00
|
|
|
/**
|
2019-05-23 18:53:46 +02:00
|
|
|
* @psalm-suppress MixedAssignment
|
2019-04-23 03:50:58 +02:00
|
|
|
*/
|
2019-05-23 18:53:46 +02:00
|
|
|
foreach ($a as $b) {
|
|
|
|
/**
|
|
|
|
* @psalm-suppress MixedMethodCall
|
|
|
|
*/
|
|
|
|
$b->bar();
|
|
|
|
}
|
2019-04-23 03:50:58 +02:00
|
|
|
}
|
2019-05-23 18:53:46 +02:00
|
|
|
}',
|
|
|
|
],
|
2019-04-23 03:50:58 +02:00
|
|
|
],
|
|
|
|
'error_counts' => [2, 1, 0],
|
|
|
|
],
|
2019-06-13 17:32:45 +02:00
|
|
|
'fixDefault' => [
|
|
|
|
'files' => [
|
|
|
|
[
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
class C {
|
|
|
|
/** @var string */
|
|
|
|
public $foo = 5;
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
class C {
|
|
|
|
/** @var string */
|
|
|
|
public $foo = "hello";
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'error_counts' => [1, 0],
|
|
|
|
],
|
2020-09-03 22:51:43 +02:00
|
|
|
'changeContent' => [
|
|
|
|
'files' => [
|
|
|
|
[
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
function add(int $a, int $b): int {
|
|
|
|
return $a + $b;
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'B.php' => '<?php
|
|
|
|
function hasMethod(object $input, string $method): bool {
|
|
|
|
return (new ReflectionClass($input))
|
|
|
|
->hasMethod($method);
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'C.php' => '<?php
|
|
|
|
function add(int $a, int $b): int {
|
|
|
|
return $a + $b;
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'D.php' => '<?php
|
|
|
|
function hasMethod(object $input, string $method): bool {
|
|
|
|
return (new ReflectionClass($input))
|
|
|
|
->hasMethod($method);
|
|
|
|
}',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'error_counts' => [0, 0, 0, 0],
|
|
|
|
],
|
2020-09-10 23:41:45 +02:00
|
|
|
'missingConstructorForTwoVars' => [
|
|
|
|
'files' => [
|
|
|
|
[
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
class A {
|
|
|
|
protected int $x;
|
|
|
|
protected int $y;
|
|
|
|
}'
|
|
|
|
],
|
|
|
|
[
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
class A {
|
|
|
|
protected int $x = 0;
|
|
|
|
protected int $y;
|
|
|
|
}'
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'error_counts' => [2, 1],
|
|
|
|
],
|
|
|
|
'missingConstructorForInheritedProperties' => [
|
|
|
|
'files' => [
|
|
|
|
[
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
abstract class A {
|
|
|
|
public int $x;
|
|
|
|
public int $y;
|
|
|
|
}
|
|
|
|
|
|
|
|
class B extends A {
|
|
|
|
public function __construct() {}
|
|
|
|
}'
|
|
|
|
],
|
|
|
|
[
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
abstract class A {
|
|
|
|
public int $x = 0;
|
|
|
|
public int $y;
|
|
|
|
}
|
|
|
|
|
|
|
|
class B extends A {
|
|
|
|
public function __construct() {}
|
|
|
|
}'
|
|
|
|
],
|
|
|
|
[
|
|
|
|
getcwd() . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . 'A.php' => '<?php
|
|
|
|
abstract class A {
|
|
|
|
public int $x = 0;
|
|
|
|
public int $y = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
class B extends A {
|
|
|
|
public function __construct() {}
|
|
|
|
}'
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'error_counts' => [2, 1, 0],
|
|
|
|
],
|
2018-10-17 21:52:58 +02:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|