Remove spaces after type casts

This commit is contained in:
Tautvidas Sipavičius
2016-06-29 19:04:23 +03:00
parent 48f0c03425
commit 24e108bce7
10 changed files with 25 additions and 25 deletions

View File

@@ -18,7 +18,7 @@ class Newsletter {
public $tracking_image_inserted;
function __construct() {
$this->tracking_enabled = (boolean) Setting::getValue('tracking.enabled');
$this->tracking_enabled = (boolean)Setting::getValue('tracking.enabled');
$this->tracking_image_inserted = false;
}
@@ -103,4 +103,4 @@ class Newsletter {
)
);
}
}
}