Commit cd615e18 authored by Franco Fichtner's avatar Franco Fichtner

src: whitespace and style

parent a72ac678
#!/usr/bin/perl -w
#!/usr/bin/env perl
#
# Clean a text file -- or directory of text files -- of stealth whitespace.
# WARNING: this can be a highly destructive operation. Use with caution.
......
......@@ -88,5 +88,4 @@ class SettingsController extends ApiControllerBase
}
}
}
......@@ -58,8 +58,14 @@ class UIModelGrid
* @param string $searchPhrase search phrase to use
* @return array
*/
public function fetch($fields, $itemsPerPage, $currentPage, $sortBy = array(), $sortDescending = false, $searchPhrase = '')
{
public function fetch(
$fields,
$itemsPerPage,
$currentPage,
$sortBy = array(),
$sortDescending = false,
$searchPhrase = ''
) {
$result = array('rows'=>array());
$recordIndex = 0;
......@@ -109,5 +115,4 @@ class UIModelGrid
return $result;
}
}
\ No newline at end of file
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment