1
0
mirror of synced 2025-02-03 05:49:25 +03:00

#6303 #6304 adding void hints where applicable

This commit is contained in:
Marco Pivetta 2017-08-19 16:53:41 +02:00
parent 0882b10213
commit 2ab363ab82
No known key found for this signature in database
GPG Key ID: 4167D3337FD9D629

View File

@ -2,7 +2,6 @@
namespace Doctrine\Tests\ORM\Functional\Ticket; namespace Doctrine\Tests\ORM\Functional\Ticket;
use Doctrine\DBAL\Schema\SchemaException;
use Doctrine\ORM\Tools\ToolsException; use Doctrine\ORM\Tools\ToolsException;
use Doctrine\Tests\OrmFunctionalTestCase; use Doctrine\Tests\OrmFunctionalTestCase;
@ -11,7 +10,7 @@ use Doctrine\Tests\OrmFunctionalTestCase;
*/ */
class DDC6303Test extends OrmFunctionalTestCase class DDC6303Test extends OrmFunctionalTestCase
{ {
public function setUp() public function setUp() : void
{ {
parent::setUp(); parent::setUp();
@ -25,7 +24,7 @@ class DDC6303Test extends OrmFunctionalTestCase
} }
} }
public function testMixedTypeHydratedCorrectlyInJoinedInheritance() public function testMixedTypeHydratedCorrectlyInJoinedInheritance() : void
{ {
$a = new DDC6303ChildA(); $a = new DDC6303ChildA();
$b = new DDC6303ChildB(); $b = new DDC6303ChildB();
@ -71,7 +70,7 @@ class DDC6303Test extends OrmFunctionalTestCase
} }
} }
public function testEmptyValuesInJoinedInheritance() public function testEmptyValuesInJoinedInheritance() : void
{ {
$stringEmptyData = ''; $stringEmptyData = '';
$stringZeroData = 0; $stringZeroData = 0;