]> git.openstreetmap.org Git - nominatim.git/blobdiff - utils/blocks.php
fix array-related errors according to PSR2 coding style guide
[nominatim.git] / utils / blocks.php
index 46b5ad05315e7590e97d74cf05cd1222d16203ea..e1dfb5909c9a06fa60352deca23d711a1023b6a7 100755 (executable)
@@ -5,7 +5,8 @@ require_once(dirname(dirname(__FILE__)).'/settings/settings.php');
 require_once(CONST_BasePath.'/lib/init-cmd.php');
 ini_set('memory_limit', '800M');
 
-$aCMDOptions = array(
+$aCMDOptions
+ = array(
     "Manage service blocks / restrictions",
     array('help', 'h', 0, 1, 0, 0, false, 'Show Help'),
     array('quiet', 'q', 0, 1, 0, 0, 'bool', 'Quiet output'),
@@ -13,7 +14,7 @@ $aCMDOptions = array(
     array('list', 'l', 0, 1, 0, 0, 'bool', 'List recent blocks'),
     array('delete', 'd', 0, 1, 0, 0, 'bool', 'Clear recent blocks list'),
     array('flush', '', 0, 1, 0, 0, 'bool', 'Flush all blocks / stats'),
-);
+   );
 getCmdOpt($_SERVER['argv'], $aCMDOptions, $aResult, true, true);
 
 $m = getBucketMemcache();