mirror of
https://github.com/silverstripe/silverstripe-environmentcheck
synced 2024-10-22 17:05:40 +02:00
15 lines
324 B
PHP
15 lines
324 B
PHP
<?php
|
|
|
|
namespace SilverStripe\EnvironmentCheck\Tests\EnvironmentCheckerTest;
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
use SilverStripe\EnvironmentCheck\EnvironmentCheck;
|
|
|
|
class CheckWarnings implements EnvironmentCheck, TestOnly
|
|
{
|
|
public function check()
|
|
{
|
|
return [EnvironmentCheck::WARNING, 'test warning'];
|
|
}
|
|
}
|