mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
e89ae93ac9
This method should typehint the incoming value once union types are available, but for now this ensures that method_exists() is not called on scalar values, which is unsupported in PHP 8.
20 lines
313 B
PHP
20 lines
313 B
PHP
<?php
|
|
|
|
namespace SilverStripe\Core\Tests\ClassInfoTest;
|
|
|
|
use SilverStripe\Core\CustomMethods;
|
|
use SilverStripe\Dev\TestOnly;
|
|
|
|
/**
|
|
* Example of class with hasMethod() implementation
|
|
*/
|
|
class HasMethod implements TestOnly
|
|
{
|
|
use CustomMethods;
|
|
|
|
public function example()
|
|
{
|
|
return true;
|
|
}
|
|
}
|