DigiComp.SettingValidator/Tests/Functional/Fixtures/TestValidationGroupsDefaultObject.php

33 lines
514 B
PHP
Raw Permalink Normal View History

<?php
2020-03-10 14:48:57 +01:00
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;
}
}