Remove spaces after type casts

This commit is contained in:
Tautvidas Sipavičius
2016-06-29 19:04:23 +03:00
parent 9595e9629f
commit 841340a42d
10 changed files with 26 additions and 26 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 {
)
);
}
}
}