composer update

This commit is contained in:
2020-12-06 10:28:55 +00:00
parent 69d92960d9
commit 09413522bb
1596 changed files with 60456 additions and 39587 deletions
@@ -19,7 +19,7 @@ class GlobalFunctionFile extends FactoryFile
public function addCall(FactoryCall $call)
{
$this->functions .= PHP_EOL . $this->generateFactoryCall($call);
$this->functions .= "\n" . $this->generateFactoryCall($call);
}
public function build()
@@ -33,7 +33,7 @@ class GlobalFunctionFile extends FactoryFile
public function generateFactoryCall(FactoryCall $call)
{
$code = "if (!function_exists('{$call->getName()}')) {";
$code = "if (!function_exists('{$call->getName()}')) {\n";
$code.= parent::generateFactoryCall($call);
$code.= "}\n";