src: style and whitespace sweep

This commit is contained in:
Franco Fichtner 2018-11-25 12:10:03 +01:00
parent f4fad63aac
commit 3ad1be040c
2 changed files with 3 additions and 2 deletions

View File

@ -58,7 +58,9 @@ class M1_0_2 extends BaseModelMigration
$node->enabled = '0';
// Description can be up to 255 characters, truncate as necessary.
$node->description = substr(
$node->description . ' - Old GeoIP rule, disabled by migration', 0, 255
$node->description . ' - Old GeoIP rule, disabled by migration',
0,
255
);
}
}

View File

@ -56,4 +56,3 @@ class Config(object):
for key in kwargs:
if hasattr(self, key):
setattr(self, key, kwargs[key])