Dogfood class

This commit is contained in:
Jan Mikeš 2020-03-11 21:43:16 +01:00
parent b5aa3e3b57
commit 5cab1397f5
No known key found for this signature in database
GPG Key ID: 1DEDF63B40DDA99D

View File

@ -0,0 +1,12 @@
<?php declare (strict_types=1);
namespace Rector\Core\DogFood;
final class DogFoodClass
{
public function test(): int
{
return 0;
return 1;
}
}