We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0d1968 commit a44d4f1Copy full SHA for a44d4f1
src/SDK/SDK.php
@@ -104,7 +104,7 @@ public function __construct(Language $language, Spec $spec)
104
return ucfirst($this->helperCamelCase($value));
105
}));
106
$this->twig->addFilter(new TwigFilter('deviceInfo', function ($value) {
107
- return php_uname('s').';'. php_uname('v') .';'. php_uname('m');
+ return php_uname('s') . ';' . php_uname('v') . ';' . php_uname('m');
108
109
$this->twig->addFilter(new TwigFilter('caseUcwords', function ($value) {
110
return ucwords($value, " -_");
0 commit comments