Fix coding style with phpcs PSR-12 standard

Signed-off-by: davidarendsen <davidarendsen@hey.com>
This commit is contained in:
davidarendsen 2022-08-15 20:28:25 +00:00
commit 39ae737fa1
30 changed files with 264 additions and 205 deletions

View file

@ -4,8 +4,8 @@ namespace Arendsen\FluxQueryBuilder\Functions;
use Arendsen\FluxQueryBuilder\Formatters;
class From extends Base {
class From extends Base
{
/**
* @var array $settings
*/
@ -20,5 +20,4 @@ class From extends Base {
{
return 'from(' . Formatters::toFluxArrayString($this->settings) . ') ';
}
}
}