1
0
mirror of https://github.com/mosbth/cimage.git synced 2025-08-01 22:00:31 +02:00

code formatting

This commit is contained in:
Mikael Roos
2014-05-20 00:00:27 +02:00
parent 6cff9ac105
commit 161fdfe769

View File

@@ -55,7 +55,7 @@ return array(
* Predefined size constants.
*
*/
'size_constant' => function() {
'size_constant' => function () {
// Set sizes to map constant to value, easier to use with width or height
$sizes = array(
@@ -81,7 +81,7 @@ return array(
* Predefined aspect ratios.
*
*/
'aspect_ratio_constant' => function() {
'aspect_ratio_constant' => function () {
return array(
'3:1' => 3/1,
'3:2' => 3/2,
@@ -98,7 +98,7 @@ return array(
/**
* Set error reporting to match development or production environment
*/
'error_reporting' => function() {
'error_reporting' => function () {
error_reporting(-1); // Report all type of errors
ini_set('display_errors', 1); // Display all errors
ini_set('output_buffering', 0); // Do not buffer outputs, write directly