DigiComp.SettingValidator/Tests/Functional/Fixtures/TestValidationGroupsDefaultObject.php
2018-04-05 10:28:15 +02:00

31 lines
513 B
PHP

<?php
namespace DigiComp\SettingValidator\Tests\Functional\Fixtures;
class TestValidationGroupsDefaultObject
{
/**
* @var bool
*/
protected $shouldBeTrue = false;
/**
* @var bool
*/
protected $shouldBeFalse = true;
/**
* @return bool
*/
public function isShouldBeTrue(): bool
{
return $this->shouldBeTrue;
}
/**
* @return bool
*/
public function isShouldBeFalse(): bool
{
return $this->shouldBeFalse;
}
}