updated styling to follow PSR-2

This commit is contained in:
zemiacsik 2018-09-07 10:12:01 +02:00 committed by GitHub
parent b28ded715c
commit 299086ea99
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,4 +2,6 @@
// Ensure compatibility with PHP 7.2 ("object" is a reserved word),
// with SilverStripe 3.6 (using Object) and SilverStripe 3.7 (using SS_Object)
if (!class_exists('SS_Object')) class_alias('Object', 'SS_Object');
if (!class_exists('SS_Object')) {
class_alias('Object', 'SS_Object');
}