mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
738ca487ac
Accidentally broke this in #10670
31 lines
658 B
PHP
31 lines
658 B
PHP
<?php
|
|
|
|
namespace SilverStripe\View\Tests\ViewableDataTest;
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
use SilverStripe\ORM\DataObject;
|
|
|
|
class ViewableDataTestObject extends DataObject implements TestOnly
|
|
{
|
|
private string $privateProperty = 'private property';
|
|
|
|
protected string $protectedProperty = 'protected property';
|
|
|
|
public string $publicProperty = 'public property';
|
|
|
|
private function privateMethod(): string
|
|
{
|
|
return 'Private function';
|
|
}
|
|
|
|
protected function protectedMethod(): string
|
|
{
|
|
return 'Protected function';
|
|
}
|
|
|
|
public function publicMethod(): string
|
|
{
|
|
return 'Public function';
|
|
}
|
|
}
|