From 6a9dca27868d02265b864dc8ff95a7b50beac5dc Mon Sep 17 00:00:00 2001 From: Andrew Short Date: Mon, 23 Sep 2013 15:56:29 +1000 Subject: [PATCH] Mark statics as private. --- code/SiteTreeContentReview.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/SiteTreeContentReview.php b/code/SiteTreeContentReview.php index dca395c..eb1f48e 100644 --- a/code/SiteTreeContentReview.php +++ b/code/SiteTreeContentReview.php @@ -7,7 +7,7 @@ */ class SiteTreeContentReview extends DataExtension implements PermissionProvider { - static $db = array( + private static $db = array( "ReviewPeriodDays" => "Int", "NextReviewDate" => "Date", 'ReviewNotes' => 'Text', @@ -15,7 +15,7 @@ class SiteTreeContentReview extends DataExtension implements PermissionProvider 'OwnerNames' => 'Varchar(255)' ); - static $has_one = array( + private static $has_one = array( 'ContentReviewOwner' => 'Member', );