Completed
Push — master ( 89fd46...4ec48f )
by Lars
03:54
created

UTF8NonStrict::chr()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
3
declare(strict_types=0);
4
5
namespace voku\helper;
6
7
use Symfony\Polyfill\Intl\Grapheme\Grapheme;
8
use Symfony\Polyfill\Xml\Xml;
9
10
/**
11
 * UTF8-Helper-Class
12
 *
13
 * @package voku\helper
14
 */
15
final class UTF8NonStrict
16
{
17
  /**
18
   * @param int $int
19
   *
20
   * @return string
21
   */
22
  public static function chr($int)
23
  {
24
    return chr($int);
25
  }
26
}
27