Apply Scrutinzer patches for spacing

This commit is contained in:
Adrien Crivelli
2017-01-05 12:14:44 +09:00
parent c8a69dfb54
commit e9d03cc6d3
14 changed files with 43 additions and 43 deletions
@@ -49,26 +49,26 @@ foreach ($customPropertyList as $customPropertyName) {
/* Manipulate properties as appropriate for display purposes **/
switch ($propertyType) {
case 'i' : // integer
case 'i': // integer
$propertyType = 'integer number';
break;
case 'f' : // float
case 'f': // float
$propertyType = 'floating point number';
break;
case 's' : // string
case 's': // string
$propertyType = 'string';
break;
case 'd' : // date
case 'd': // date
$propertyValue = date('l, d<\s\up>S</\s\up> F Y g:i A', $propertyValue);
$propertyType = 'date';
break;
case 'b' : // boolean
case 'b': // boolean
$propertyValue = ($propertyValue) ? 'TRUE' : 'FALSE';
$propertyType = 'boolean';
break;
}
echo $propertyValue,' (',$propertyType,')<br />';
echo $propertyValue, ' (', $propertyType, ')<br />';
}
?>