mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 17:05:42 +02:00
15 lines
378 B
PHP
15 lines
378 B
PHP
|
<?php
|
||
|
|
||
|
namespace SilverStripe\UserForms\Tests\Control\fixtures;
|
||
|
|
||
|
use SilverStripe\Dev\TestOnly;
|
||
|
use SilverStripe\UserForms\Control\UserDefinedFormController;
|
||
|
|
||
|
class SizeStringTestableController extends UserDefinedFormController implements TestOnly
|
||
|
{
|
||
|
public function convertSizeStringToBytes($sizeString)
|
||
|
{
|
||
|
return $this->parseByteSizeString($sizeString);
|
||
|
}
|
||
|
}
|