| Conditions | 3 |
| Paths | 4 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | public function apply($string, $config = null) |
||
| 18 | { |
||
| 19 | if (is_null($config)) { |
||
| 20 | $config = 'default'; |
||
| 21 | } |
||
| 22 | |||
| 23 | if (!isset($this->configs[$config])) { |
||
| 24 | throw new InvalidConfigurationException('Typograph\'s config "'. $config .'" doesn\'t exist'); |
||
| 25 | } |
||
| 26 | |||
| 27 | return EMTypograph::fast_apply($string, $this->configs[$config]); |
||
| 28 | } |
||
| 29 | } |