1
0
mirror of synced 2025-02-02 21:41:45 +03:00

#6303 #6304 using strict types in the tests

This commit is contained in:
Marco Pivetta 2017-08-19 17:05:44 +02:00
parent e18fb6607d
commit 468496be1a
No known key found for this signature in database
GPG Key ID: 4167D3337FD9D629

View File

@ -1,4 +1,5 @@
<?php
declare(strict_types=1);
namespace Doctrine\Tests\ORM\Functional\Ticket;
@ -97,7 +98,7 @@ class DDC6303ChildA extends DDC6303BaseClass
/** @Column(type="string", nullable=true) */
public $originalData;
public function __construct(string $id, string $originalData)
public function __construct(string $id, $originalData)
{
$this->id = $id;
$this->originalData = $originalData;