mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-25 12:14:02 +01:00
15 lines
194 B
PHP
15 lines
194 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App;
|
|
|
|
final class ScreenSample
|
|
{
|
|
public function run($value)
|
|
{
|
|
$value = is_string($value) ? 5 : $value;
|
|
return $value;
|
|
}
|
|
}
|