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

UTF8NonStrict   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 0
dl 0
loc 12
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A chr() 0 4 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