Code Coverage
 
Classes and Traits
Functions and Methods
Lines
Total
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
CRAP
0.00% covered (danger)
0.00%
0 / 1
Addword
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
0.00% covered (danger)
0.00%
0 / 1
 format
0.00% covered (danger)
0.00%
0 / 1
2
0.00% covered (danger)
0.00%
0 / 1
1<?php
2
3namespace Qmp\Laravel\DictionaryFormatter\Formatters;
4
5class Addword
6{
7
8    /**
9     * Undocumented function
10     *
11     * @param [type] $value
12     * @return void
13     */
14    public static function format($value, $word) {
15        return trim("$value $word"); 
16    }
17
18}