@@ -48,17 +48,17 @@ public function __construct()
48
48
*/
49
49
public function build ($ functionName = null )
50
50
{
51
+ $ functionNameOrEmptyString = $ functionName === null ? '' : $ functionName ;
52
+
51
53
$ parameterBuilder = new ParameterBuilder ();
52
- $ parameterBuilder ->build ($ functionName === null ? '' : $ functionName );
54
+ $ parameterBuilder ->build ($ functionNameOrEmptyString );
53
55
$ signatureParameters = $ parameterBuilder ->getSignatureParameters ();
54
56
55
- $ populatedFunctionName = $ functionName === null ? '_dummy ' : $ functionName ;
56
-
57
57
/**
58
58
* If a class with the same signature exists, it is considered equivalent
59
59
* to the generated class.
60
60
*/
61
- $ hash = md5 ($ populatedFunctionName . $ signatureParameters );
61
+ $ hash = md5 ($ functionNameOrEmptyString . $ signatureParameters );
62
62
$ this ->namespace = __NAMESPACE__ . $ hash ;
63
63
if (class_exists ($ this ->getFullyQualifiedClassName ())) {
64
64
return ;
@@ -67,7 +67,7 @@ public function build($functionName = null)
67
67
$ data = [
68
68
"namespace " => $ this ->namespace ,
69
69
"signatureParameters " => $ signatureParameters ,
70
- "functionName " => $ populatedFunctionName ,
70
+ "function " => $ functionName === null ? '' : ' public function ' . $ functionName . ' () {} ' ,
71
71
];
72
72
$ this ->template ->setVar ($ data , false );
73
73
$ definition = $ this ->template ->render ();
0 commit comments