@@ -55,7 +55,7 @@ public function abbrClass($class)
55
55
$ parts = explode ('\\' , $ class );
56
56
$ short = array_pop ($ parts );
57
57
58
- return sprintf (" <abbr title= \ "%s \ ">%s</abbr> " , $ class , $ short );
58
+ return sprintf (' <abbr title="%s">%s</abbr> ' , $ class , $ short );
59
59
}
60
60
61
61
public function abbrMethod ($ method )
@@ -64,9 +64,9 @@ public function abbrMethod($method)
64
64
list ($ class , $ method ) = explode (':: ' , $ method , 2 );
65
65
$ result = sprintf ('%s::%s() ' , $ this ->abbrClass ($ class ), $ method );
66
66
} elseif ('Closure ' === $ method ) {
67
- $ result = sprintf (" <abbr title= \ "%s \ ">%s</abbr> " , $ method , $ method );
67
+ $ result = sprintf (' <abbr title="%s">%s</abbr> ' , $ method , $ method );
68
68
} else {
69
- $ result = sprintf (" <abbr title= \ "%s \ ">%s</abbr>() " , $ method , $ method );
69
+ $ result = sprintf (' <abbr title="%s">%s</abbr>() ' , $ method , $ method );
70
70
}
71
71
72
72
return $ result ;
@@ -86,7 +86,7 @@ public function formatArgs(array $args)
86
86
if ('object ' === $ item [0 ]) {
87
87
$ parts = explode ('\\' , $ item [1 ]);
88
88
$ short = array_pop ($ parts );
89
- $ formattedValue = sprintf (" <em>object</em>(<abbr title= \ "%s \ ">%s</abbr>) " , $ item [1 ], $ short );
89
+ $ formattedValue = sprintf (' <em>object</em>(<abbr title="%s">%s</abbr>) ' , $ item [1 ], $ short );
90
90
} elseif ('array ' === $ item [0 ]) {
91
91
$ formattedValue = sprintf ('<em>array</em>(%s) ' , is_array ($ item [1 ]) ? $ this ->formatArgs ($ item [1 ]) : $ item [1 ]);
92
92
} elseif ('string ' === $ item [0 ]) {
0 commit comments