|
1
|
<?php |
|
2
|
|
|
3
|
declare(strict_types=1); |
|
4
|
|
|
5
|
namespace AC\Formatter\Wrap; |
|
6
|
|
|
7
|
use AC\Formatter; |
|
8
|
use AC\Type\Value; |
|
9
|
|
|
10
|
class ToSmall implements Formatter |
|
11
|
{ |
|
12
|
|
|
13
|
public function format(Value $value) |
|
14
|
{ |
|
15
|
return $value->with_value(sprintf('<small>%s</small>', $value->get_value())); |
|
16
|
} |
|
17
|
|
|
18
|
}
|