rector/sample/ScreenSample.php

15 lines
194 B
PHP
Raw Normal View History

2019-10-13 07:59:52 +02:00
<?php
declare(strict_types=1);
2019-10-10 17:32:18 +01:00
namespace App;
final class ScreenSample
{
2019-10-14 00:12:25 +02:00
public function run($value)
2019-10-10 17:32:18 +01:00
{
2019-10-14 00:12:25 +02:00
$value = is_string($value) ? 5 : $value;
return $value;
2019-10-10 17:32:18 +01:00
}
}