DigiComp.SettingValidator/Tests/Functional/Fixtures/TestValidationGroupsDefaultObject.php
Daniel Siepmann 2b41d5f3db
BUGFIX: Fix broken recursion with validation groups
Provide current validation group for recursive SettingsValidator.
Adjust test.
Provide configuration to outline the issue.
2017-07-19 12:54:29 +02:00

33 lines
549 B
PHP

<?php
namespace DigiComp\SettingValidator\Tests\Functional\Fixtures;
use Neos\Flow\Annotations as Flow;
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;
}
}