@@ -40,19 +40,19 @@ discard block |
||
40 | 40 | public function getFilters() |
41 | 41 | { |
42 | 42 | return [ |
43 | - new \Twig_SimpleFilter('typogrify', [$this, 'typogrify']), |
|
44 | - new \Twig_SimpleFilter('typogrifyFeed', [$this, 'typogrifyFeed']), |
|
45 | - new \Twig_SimpleFilter('smartypants', [$this, 'smartypants']), |
|
46 | - new \Twig_SimpleFilter('truncate', [$this, 'truncate']), |
|
47 | - new \Twig_SimpleFilter('truncateOnWord', [$this, 'truncateOnWord']), |
|
48 | - new \Twig_SimpleFilter('stringy', [$this, 'stringy']), |
|
49 | - new \Twig_SimpleFilter('humanFileSize', [$this, 'humanFileSize']), |
|
50 | - new \Twig_SimpleFilter('humanDuration', [$this, 'humanDuration']), |
|
51 | - new \Twig_SimpleFilter('humanRelativeTime', [$this, 'humanRelativeTime']), |
|
52 | - new \Twig_SimpleFilter('ordinalize', [$this, 'ordinalize']), |
|
53 | - new \Twig_SimpleFilter('pluralize', [$this, 'pluralize']), |
|
54 | - new \Twig_SimpleFilter('singularize', [$this, 'singularize']), |
|
55 | - new \Twig_SimpleFilter('transliterate', [$this, 'transliterate']), |
|
43 | + new \Twig_SimpleFilter('typogrify', [ $this, 'typogrify' ]), |
|
44 | + new \Twig_SimpleFilter('typogrifyFeed', [ $this, 'typogrifyFeed' ]), |
|
45 | + new \Twig_SimpleFilter('smartypants', [ $this, 'smartypants' ]), |
|
46 | + new \Twig_SimpleFilter('truncate', [ $this, 'truncate' ]), |
|
47 | + new \Twig_SimpleFilter('truncateOnWord', [ $this, 'truncateOnWord' ]), |
|
48 | + new \Twig_SimpleFilter('stringy', [ $this, 'stringy' ]), |
|
49 | + new \Twig_SimpleFilter('humanFileSize', [ $this, 'humanFileSize' ]), |
|
50 | + new \Twig_SimpleFilter('humanDuration', [ $this, 'humanDuration' ]), |
|
51 | + new \Twig_SimpleFilter('humanRelativeTime', [ $this, 'humanRelativeTime' ]), |
|
52 | + new \Twig_SimpleFilter('ordinalize', [ $this, 'ordinalize' ]), |
|
53 | + new \Twig_SimpleFilter('pluralize', [ $this, 'pluralize' ]), |
|
54 | + new \Twig_SimpleFilter('singularize', [ $this, 'singularize' ]), |
|
55 | + new \Twig_SimpleFilter('transliterate', [ $this, 'transliterate' ]), |
|
56 | 56 | ]; |
57 | 57 | } |
58 | 58 | |
@@ -62,20 +62,20 @@ discard block |
||
62 | 62 | public function getFunctions() |
63 | 63 | { |
64 | 64 | return [ |
65 | - new \Twig_SimpleFunction('typogrify', [$this, 'typogrify']), |
|
66 | - new \Twig_SimpleFunction('typogrifyFeed', [$this, 'typogrifyFeed']), |
|
67 | - new \Twig_SimpleFunction('smartypants', [$this, 'smartypants']), |
|
68 | - new \Twig_SimpleFunction('getPhpTypographySettings', [$this, 'getPhpTypographySettings']), |
|
69 | - new \Twig_SimpleFunction('truncate', [$this, 'truncate']), |
|
70 | - new \Twig_SimpleFunction('truncateOnWord', [$this, 'truncateOnWord']), |
|
71 | - new \Twig_SimpleFunction('stringy', [$this, 'stringy']), |
|
72 | - new \Twig_SimpleFunction('humanFileSize', [$this, 'humanFileSize']), |
|
73 | - new \Twig_SimpleFunction('humanDuration', [$this, 'humanDuration']), |
|
74 | - new \Twig_SimpleFunction('humanRelativeTime', [$this, 'humanRelativeTime']), |
|
75 | - new \Twig_SimpleFunction('ordinalize', [$this, 'ordinalize']), |
|
76 | - new \Twig_SimpleFunction('pluralize', [$this, 'pluralize']), |
|
77 | - new \Twig_SimpleFunction('singularize', [$this, 'singularize']), |
|
78 | - new \Twig_SimpleFunction('transliterate', [$this, 'transliterate']), |
|
65 | + new \Twig_SimpleFunction('typogrify', [ $this, 'typogrify' ]), |
|
66 | + new \Twig_SimpleFunction('typogrifyFeed', [ $this, 'typogrifyFeed' ]), |
|
67 | + new \Twig_SimpleFunction('smartypants', [ $this, 'smartypants' ]), |
|
68 | + new \Twig_SimpleFunction('getPhpTypographySettings', [ $this, 'getPhpTypographySettings' ]), |
|
69 | + new \Twig_SimpleFunction('truncate', [ $this, 'truncate' ]), |
|
70 | + new \Twig_SimpleFunction('truncateOnWord', [ $this, 'truncateOnWord' ]), |
|
71 | + new \Twig_SimpleFunction('stringy', [ $this, 'stringy' ]), |
|
72 | + new \Twig_SimpleFunction('humanFileSize', [ $this, 'humanFileSize' ]), |
|
73 | + new \Twig_SimpleFunction('humanDuration', [ $this, 'humanDuration' ]), |
|
74 | + new \Twig_SimpleFunction('humanRelativeTime', [ $this, 'humanRelativeTime' ]), |
|
75 | + new \Twig_SimpleFunction('ordinalize', [ $this, 'ordinalize' ]), |
|
76 | + new \Twig_SimpleFunction('pluralize', [ $this, 'pluralize' ]), |
|
77 | + new \Twig_SimpleFunction('singularize', [ $this, 'singularize' ]), |
|
78 | + new \Twig_SimpleFunction('transliterate', [ $this, 'transliterate' ]), |
|
79 | 79 | ]; |
80 | 80 | } |
81 | 81 |