diff --git a/lib/API/JSON/v1/ImportExport.php b/lib/API/JSON/v1/ImportExport.php index 44f82de3b0..a154679947 100644 --- a/lib/API/JSON/v1/ImportExport.php +++ b/lib/API/JSON/v1/ImportExport.php @@ -100,7 +100,7 @@ class ImportExport extends APIEndpoint { return $this->successResponse(); } catch (\Exception $e) { return $this->errorResponse([ - $e->getCode() => $e->getMessage() + $e->getCode() => $e->getMessage(), ]); } } diff --git a/lib/Config/Env.php b/lib/Config/Env.php index 921839486a..b1fd24f3bd 100644 --- a/lib/Config/Env.php +++ b/lib/Config/Env.php @@ -94,7 +94,7 @@ class Env { $port, ';', 'dbname=', - $db_name + $db_name, ]; if (!empty($socket)) { $source_name[] = ';unix_socket=' . $socket; diff --git a/lib/Config/Menu.php b/lib/Config/Menu.php index 34f72da156..098f7a5c00 100644 --- a/lib/Config/Menu.php +++ b/lib/Config/Menu.php @@ -531,12 +531,12 @@ class Menu { $system_status_data = [ 'cron' => [ 'url' => CronHelper::getCronUrl(CronDaemon::ACTION_PING), - 'isReachable' => CronHelper::pingDaemon(true) + 'isReachable' => CronHelper::pingDaemon(true), ], 'mss' => [ 'enabled' => (Bridge::isMPSendingServiceEnabled()) ? ['isReachable' => Bridge::pingBridge()] : - false + false, ], 'cronStatus' => CronHelper::getDaemon(), 'queueStatus' => MailerLog::getMailerLog(), diff --git a/lib/Config/Populator.php b/lib/Config/Populator.php index 17132e3aef..9400a036bb 100644 --- a/lib/Config/Populator.php +++ b/lib/Config/Populator.php @@ -295,7 +295,7 @@ class Populator { $this->default_segment->hydrate([ 'name' => WPFunctions::get()->__('My First List', 'mailpoet'), 'description' => - WPFunctions::get()->__('This list is automatically created when you install MailPoet.', 'mailpoet') + WPFunctions::get()->__('This list is automatically created when you install MailPoet.', 'mailpoet'), ]); $this->default_segment->save(); } diff --git a/lib/Config/PopulatorData/Templates/Avocado.php b/lib/Config/PopulatorData/Templates/Avocado.php index 2b691264cd..35ddbfdf4b 100644 --- a/lib/Config/PopulatorData/Templates/Avocado.php +++ b/lib/Config/PopulatorData/Templates/Avocado.php @@ -38,7 +38,7 @@ class Avocado { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -56,7 +56,7 @@ class Avocado { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -74,7 +74,7 @@ class Avocado { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -123,7 +123,7 @@ class Avocado { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -162,7 +162,7 @@ class Avocado { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -180,7 +180,7 @@ class Avocado { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -238,7 +238,7 @@ class Avocado { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -256,7 +256,7 @@ class Avocado { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -293,7 +293,7 @@ class Avocado { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -357,7 +357,7 @@ class Avocado { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -375,7 +375,7 @@ class Avocado { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -403,7 +403,7 @@ class Avocado { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -421,7 +421,7 @@ class Avocado { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -478,7 +478,7 @@ class Avocado { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -496,7 +496,7 @@ class Avocado { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -559,7 +559,7 @@ class Avocado { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -577,7 +577,7 @@ class Avocado { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/Birds.php b/lib/Config/PopulatorData/Templates/Birds.php index 04fef4d0f6..71b05f7588 100644 --- a/lib/Config/PopulatorData/Templates/Birds.php +++ b/lib/Config/PopulatorData/Templates/Birds.php @@ -35,7 +35,7 @@ class Birds { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -54,7 +54,7 @@ class Birds { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -73,7 +73,7 @@ class Birds { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -108,7 +108,7 @@ class Birds { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -127,7 +127,7 @@ class Birds { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -177,7 +177,7 @@ class Birds { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -236,7 +236,7 @@ class Birds { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -255,7 +255,7 @@ class Birds { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -309,7 +309,7 @@ class Birds { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -384,7 +384,7 @@ class Birds { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -419,7 +419,7 @@ class Birds { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -438,7 +438,7 @@ class Birds { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -473,7 +473,7 @@ class Birds { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -492,7 +492,7 @@ class Birds { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -530,7 +530,7 @@ class Birds { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -595,7 +595,7 @@ class Birds { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -614,7 +614,7 @@ class Birds { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -649,7 +649,7 @@ class Birds { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -668,7 +668,7 @@ class Birds { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -708,7 +708,7 @@ class Birds { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -727,7 +727,7 @@ class Birds { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -765,7 +765,7 @@ class Birds { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -803,7 +803,7 @@ class Birds { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -843,7 +843,7 @@ class Birds { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -862,7 +862,7 @@ class Birds { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -900,7 +900,7 @@ class Birds { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -938,7 +938,7 @@ class Birds { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -978,7 +978,7 @@ class Birds { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -997,7 +997,7 @@ class Birds { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1032,7 +1032,7 @@ class Birds { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1051,7 +1051,7 @@ class Birds { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1089,7 +1089,7 @@ class Birds { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1185,7 +1185,7 @@ class Birds { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1204,7 +1204,7 @@ class Birds { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1239,7 +1239,7 @@ class Birds { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1258,7 +1258,7 @@ class Birds { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1293,7 +1293,7 @@ class Birds { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1312,7 +1312,7 @@ class Birds { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/BookStoreWithCoupon.php b/lib/Config/PopulatorData/Templates/BookStoreWithCoupon.php index 95da517f97..a9ad874611 100644 --- a/lib/Config/PopulatorData/Templates/BookStoreWithCoupon.php +++ b/lib/Config/PopulatorData/Templates/BookStoreWithCoupon.php @@ -39,7 +39,7 @@ class BookStoreWithCoupon { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -58,7 +58,7 @@ class BookStoreWithCoupon { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -77,7 +77,7 @@ class BookStoreWithCoupon { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -160,7 +160,7 @@ class BookStoreWithCoupon { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -232,7 +232,7 @@ class BookStoreWithCoupon { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -265,7 +265,7 @@ class BookStoreWithCoupon { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -304,7 +304,7 @@ class BookStoreWithCoupon { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -358,7 +358,7 @@ class BookStoreWithCoupon { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -415,7 +415,7 @@ class BookStoreWithCoupon { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -503,7 +503,7 @@ class BookStoreWithCoupon { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -522,7 +522,7 @@ class BookStoreWithCoupon { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -557,7 +557,7 @@ class BookStoreWithCoupon { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -576,7 +576,7 @@ class BookStoreWithCoupon { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -615,7 +615,7 @@ class BookStoreWithCoupon { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -654,7 +654,7 @@ class BookStoreWithCoupon { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -695,7 +695,7 @@ class BookStoreWithCoupon { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -714,7 +714,7 @@ class BookStoreWithCoupon { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -749,7 +749,7 @@ class BookStoreWithCoupon { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -768,7 +768,7 @@ class BookStoreWithCoupon { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/BrandingAgencyNews.php b/lib/Config/PopulatorData/Templates/BrandingAgencyNews.php index 5d0908465a..ee5b736500 100644 --- a/lib/Config/PopulatorData/Templates/BrandingAgencyNews.php +++ b/lib/Config/PopulatorData/Templates/BrandingAgencyNews.php @@ -36,7 +36,7 @@ class BrandingAgencyNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -55,7 +55,7 @@ class BrandingAgencyNews { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -74,7 +74,7 @@ class BrandingAgencyNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -133,7 +133,7 @@ class BrandingAgencyNews { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -152,7 +152,7 @@ class BrandingAgencyNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -187,7 +187,7 @@ class BrandingAgencyNews { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -206,7 +206,7 @@ class BrandingAgencyNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -256,7 +256,7 @@ class BrandingAgencyNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -329,7 +329,7 @@ class BrandingAgencyNews { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -348,7 +348,7 @@ class BrandingAgencyNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -459,7 +459,7 @@ class BrandingAgencyNews { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -478,7 +478,7 @@ class BrandingAgencyNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -516,7 +516,7 @@ class BrandingAgencyNews { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -535,7 +535,7 @@ class BrandingAgencyNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -570,7 +570,7 @@ class BrandingAgencyNews { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -589,7 +589,7 @@ class BrandingAgencyNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -640,7 +640,7 @@ class BrandingAgencyNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -680,7 +680,7 @@ class BrandingAgencyNews { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -699,7 +699,7 @@ class BrandingAgencyNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -734,7 +734,7 @@ class BrandingAgencyNews { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -753,7 +753,7 @@ class BrandingAgencyNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -804,7 +804,7 @@ class BrandingAgencyNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -844,7 +844,7 @@ class BrandingAgencyNews { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -863,7 +863,7 @@ class BrandingAgencyNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -898,7 +898,7 @@ class BrandingAgencyNews { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -917,7 +917,7 @@ class BrandingAgencyNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -952,7 +952,7 @@ class BrandingAgencyNews { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -971,7 +971,7 @@ class BrandingAgencyNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1048,7 +1048,7 @@ class BrandingAgencyNews { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1067,7 +1067,7 @@ class BrandingAgencyNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1105,7 +1105,7 @@ class BrandingAgencyNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1143,7 +1143,7 @@ class BrandingAgencyNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1195,7 +1195,7 @@ class BrandingAgencyNews { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1214,7 +1214,7 @@ class BrandingAgencyNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1252,7 +1252,7 @@ class BrandingAgencyNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1302,7 +1302,7 @@ class BrandingAgencyNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1354,7 +1354,7 @@ class BrandingAgencyNews { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1373,7 +1373,7 @@ class BrandingAgencyNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1408,7 +1408,7 @@ class BrandingAgencyNews { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1427,7 +1427,7 @@ class BrandingAgencyNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1477,7 +1477,7 @@ class BrandingAgencyNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1515,7 +1515,7 @@ class BrandingAgencyNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1567,7 +1567,7 @@ class BrandingAgencyNews { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1586,7 +1586,7 @@ class BrandingAgencyNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1621,7 +1621,7 @@ class BrandingAgencyNews { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1640,7 +1640,7 @@ class BrandingAgencyNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/BuddhistTemple.php b/lib/Config/PopulatorData/Templates/BuddhistTemple.php index 54ca1528d8..062429e099 100644 --- a/lib/Config/PopulatorData/Templates/BuddhistTemple.php +++ b/lib/Config/PopulatorData/Templates/BuddhistTemple.php @@ -35,7 +35,7 @@ class BuddhistTemple { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -54,7 +54,7 @@ class BuddhistTemple { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -73,7 +73,7 @@ class BuddhistTemple { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -127,7 +127,7 @@ class BuddhistTemple { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -297,7 +297,7 @@ class BuddhistTemple { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -332,7 +332,7 @@ class BuddhistTemple { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -351,7 +351,7 @@ class BuddhistTemple { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -391,7 +391,7 @@ class BuddhistTemple { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -450,7 +450,7 @@ class BuddhistTemple { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -483,7 +483,7 @@ class BuddhistTemple { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -591,7 +591,7 @@ class BuddhistTemple { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -610,7 +610,7 @@ class BuddhistTemple { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -645,7 +645,7 @@ class BuddhistTemple { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -664,7 +664,7 @@ class BuddhistTemple { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -709,7 +709,7 @@ class BuddhistTemple { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -754,7 +754,7 @@ class BuddhistTemple { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -801,7 +801,7 @@ class BuddhistTemple { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -820,7 +820,7 @@ class BuddhistTemple { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/Charity.php b/lib/Config/PopulatorData/Templates/Charity.php index f79f4ed13e..7ed723146c 100644 --- a/lib/Config/PopulatorData/Templates/Charity.php +++ b/lib/Config/PopulatorData/Templates/Charity.php @@ -38,7 +38,7 @@ class Charity { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -56,7 +56,7 @@ class Charity { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -74,7 +74,7 @@ class Charity { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -126,7 +126,7 @@ class Charity { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -175,7 +175,7 @@ class Charity { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -232,7 +232,7 @@ class Charity { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -286,7 +286,7 @@ class Charity { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -317,7 +317,7 @@ class Charity { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -335,7 +335,7 @@ class Charity { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -411,7 +411,7 @@ class Charity { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -429,7 +429,7 @@ class Charity { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -468,7 +468,7 @@ class Charity { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -486,7 +486,7 @@ class Charity { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -523,7 +523,7 @@ class Charity { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -552,7 +552,7 @@ class Charity { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -570,7 +570,7 @@ class Charity { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -609,7 +609,7 @@ class Charity { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -627,7 +627,7 @@ class Charity { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -676,7 +676,7 @@ class Charity { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -746,7 +746,7 @@ class Charity { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/CityLocalNews.php b/lib/Config/PopulatorData/Templates/CityLocalNews.php index 476e59e0e6..d55fc30369 100755 --- a/lib/Config/PopulatorData/Templates/CityLocalNews.php +++ b/lib/Config/PopulatorData/Templates/CityLocalNews.php @@ -36,7 +36,7 @@ class CityLocalNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -55,7 +55,7 @@ class CityLocalNews { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -74,7 +74,7 @@ class CityLocalNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -152,7 +152,7 @@ class CityLocalNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -270,7 +270,7 @@ class CityLocalNews { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -289,7 +289,7 @@ class CityLocalNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -324,7 +324,7 @@ class CityLocalNews { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -343,7 +343,7 @@ class CityLocalNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -385,7 +385,7 @@ class CityLocalNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -425,7 +425,7 @@ class CityLocalNews { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -444,7 +444,7 @@ class CityLocalNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -479,7 +479,7 @@ class CityLocalNews { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -498,7 +498,7 @@ class CityLocalNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -555,7 +555,7 @@ class CityLocalNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -614,7 +614,7 @@ class CityLocalNews { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -633,7 +633,7 @@ class CityLocalNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -702,7 +702,7 @@ class CityLocalNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -773,7 +773,7 @@ class CityLocalNews { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -792,7 +792,7 @@ class CityLocalNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -827,7 +827,7 @@ class CityLocalNews { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -846,7 +846,7 @@ class CityLocalNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -884,7 +884,7 @@ class CityLocalNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -959,7 +959,7 @@ class CityLocalNews { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -978,7 +978,7 @@ class CityLocalNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/ClearNews.php b/lib/Config/PopulatorData/Templates/ClearNews.php index 0413254423..852d962f73 100644 --- a/lib/Config/PopulatorData/Templates/ClearNews.php +++ b/lib/Config/PopulatorData/Templates/ClearNews.php @@ -39,7 +39,7 @@ class ClearNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -58,7 +58,7 @@ class ClearNews { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -77,7 +77,7 @@ class ClearNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -136,7 +136,7 @@ class ClearNews { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -155,7 +155,7 @@ class ClearNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -205,7 +205,7 @@ class ClearNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -245,7 +245,7 @@ class ClearNews { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -264,7 +264,7 @@ class ClearNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -291,7 +291,7 @@ class ClearNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -343,7 +343,7 @@ class ClearNews { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -362,7 +362,7 @@ class ClearNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -400,7 +400,7 @@ class ClearNews { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -419,7 +419,7 @@ class ClearNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -527,7 +527,7 @@ class ClearNews { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -546,7 +546,7 @@ class ClearNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -584,7 +584,7 @@ class ClearNews { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -603,7 +603,7 @@ class ClearNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -643,7 +643,7 @@ class ClearNews { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -662,7 +662,7 @@ class ClearNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -707,7 +707,7 @@ class ClearNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -752,7 +752,7 @@ class ClearNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -799,7 +799,7 @@ class ClearNews { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -818,7 +818,7 @@ class ClearNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -863,7 +863,7 @@ class ClearNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -908,7 +908,7 @@ class ClearNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -955,7 +955,7 @@ class ClearNews { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -974,7 +974,7 @@ class ClearNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1019,7 +1019,7 @@ class ClearNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1064,7 +1064,7 @@ class ClearNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1111,7 +1111,7 @@ class ClearNews { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1130,7 +1130,7 @@ class ClearNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1184,7 +1184,7 @@ class ClearNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1217,7 +1217,7 @@ class ClearNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1294,7 +1294,7 @@ class ClearNews { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1313,7 +1313,7 @@ class ClearNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1351,7 +1351,7 @@ class ClearNews { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1370,7 +1370,7 @@ class ClearNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1408,7 +1408,7 @@ class ClearNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1440,7 +1440,7 @@ class ClearNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/College.php b/lib/Config/PopulatorData/Templates/College.php index ff760d8824..5ddaf4c09b 100644 --- a/lib/Config/PopulatorData/Templates/College.php +++ b/lib/Config/PopulatorData/Templates/College.php @@ -36,7 +36,7 @@ class College { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -55,7 +55,7 @@ class College { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -74,7 +74,7 @@ class College { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -109,7 +109,7 @@ class College { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -128,7 +128,7 @@ class College { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -166,7 +166,7 @@ class College { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -247,7 +247,7 @@ class College { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -325,7 +325,7 @@ class College { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -379,7 +379,7 @@ class College { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -398,7 +398,7 @@ class College { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -488,7 +488,7 @@ class College { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -560,7 +560,7 @@ class College { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -579,7 +579,7 @@ class College { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -614,7 +614,7 @@ class College { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -633,7 +633,7 @@ class College { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -719,7 +719,7 @@ class College { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/ComputerRepair.php b/lib/Config/PopulatorData/Templates/ComputerRepair.php index 97558f5279..5d5acd7d93 100644 --- a/lib/Config/PopulatorData/Templates/ComputerRepair.php +++ b/lib/Config/PopulatorData/Templates/ComputerRepair.php @@ -36,7 +36,7 @@ class ComputerRepair { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -55,7 +55,7 @@ class ComputerRepair { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -74,7 +74,7 @@ class ComputerRepair { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -114,7 +114,7 @@ class ComputerRepair { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -133,7 +133,7 @@ class ComputerRepair { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -235,7 +235,7 @@ class ComputerRepair { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -254,7 +254,7 @@ class ComputerRepair { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -280,7 +280,7 @@ class ComputerRepair { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -306,7 +306,7 @@ class ComputerRepair { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -334,7 +334,7 @@ class ComputerRepair { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -353,7 +353,7 @@ class ComputerRepair { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -407,7 +407,7 @@ class ComputerRepair { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -484,7 +484,7 @@ class ComputerRepair { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -503,7 +503,7 @@ class ComputerRepair { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -555,7 +555,7 @@ class ComputerRepair { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -574,7 +574,7 @@ class ComputerRepair { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -612,7 +612,7 @@ class ComputerRepair { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -705,7 +705,7 @@ class ComputerRepair { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -724,7 +724,7 @@ class ComputerRepair { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/DogFood.php b/lib/Config/PopulatorData/Templates/DogFood.php index 82b0e0bfe8..c6c498d4b8 100644 --- a/lib/Config/PopulatorData/Templates/DogFood.php +++ b/lib/Config/PopulatorData/Templates/DogFood.php @@ -38,7 +38,7 @@ class DogFood { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -56,7 +56,7 @@ class DogFood { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -74,7 +74,7 @@ class DogFood { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -108,7 +108,7 @@ class DogFood { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -126,7 +126,7 @@ class DogFood { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -175,7 +175,7 @@ class DogFood { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -247,7 +247,7 @@ class DogFood { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -265,7 +265,7 @@ class DogFood { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -304,7 +304,7 @@ class DogFood { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -322,7 +322,7 @@ class DogFood { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -402,7 +402,7 @@ class DogFood { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -420,7 +420,7 @@ class DogFood { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -489,7 +489,7 @@ class DogFood { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -558,7 +558,7 @@ class DogFood { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -629,7 +629,7 @@ class DogFood { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -647,7 +647,7 @@ class DogFood { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -712,7 +712,7 @@ class DogFood { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -730,7 +730,7 @@ class DogFood { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/Drone.php b/lib/Config/PopulatorData/Templates/Drone.php index a671944e14..de0849924b 100644 --- a/lib/Config/PopulatorData/Templates/Drone.php +++ b/lib/Config/PopulatorData/Templates/Drone.php @@ -38,7 +38,7 @@ class Drone { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -56,7 +56,7 @@ class Drone { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -74,7 +74,7 @@ class Drone { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -108,7 +108,7 @@ class Drone { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -126,7 +126,7 @@ class Drone { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -205,7 +205,7 @@ class Drone { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -223,7 +223,7 @@ class Drone { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -275,7 +275,7 @@ class Drone { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -293,7 +293,7 @@ class Drone { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -330,7 +330,7 @@ class Drone { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -394,7 +394,7 @@ class Drone { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -412,7 +412,7 @@ class Drone { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -446,7 +446,7 @@ class Drone { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -464,7 +464,7 @@ class Drone { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -597,7 +597,7 @@ class Drone { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -615,7 +615,7 @@ class Drone { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -649,7 +649,7 @@ class Drone { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -667,7 +667,7 @@ class Drone { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -699,7 +699,7 @@ class Drone { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -736,7 +736,7 @@ class Drone { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -770,7 +770,7 @@ class Drone { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -788,7 +788,7 @@ class Drone { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/Engineering.php b/lib/Config/PopulatorData/Templates/Engineering.php index a1a07ba09e..f87ac9c14b 100755 --- a/lib/Config/PopulatorData/Templates/Engineering.php +++ b/lib/Config/PopulatorData/Templates/Engineering.php @@ -36,7 +36,7 @@ class Engineering { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -55,7 +55,7 @@ class Engineering { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -74,7 +74,7 @@ class Engineering { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -109,7 +109,7 @@ class Engineering { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -128,7 +128,7 @@ class Engineering { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -223,7 +223,7 @@ class Engineering { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -275,7 +275,7 @@ class Engineering { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -294,7 +294,7 @@ class Engineering { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -332,7 +332,7 @@ class Engineering { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -385,7 +385,7 @@ class Engineering { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -404,7 +404,7 @@ class Engineering { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -461,7 +461,7 @@ class Engineering { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -480,7 +480,7 @@ class Engineering { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -531,7 +531,7 @@ class Engineering { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -583,7 +583,7 @@ class Engineering { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -602,7 +602,7 @@ class Engineering { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -652,7 +652,7 @@ class Engineering { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -671,7 +671,7 @@ class Engineering { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -742,7 +742,7 @@ class Engineering { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -792,7 +792,7 @@ class Engineering { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -852,7 +852,7 @@ class Engineering { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -871,7 +871,7 @@ class Engineering { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/FarmersMarket.php b/lib/Config/PopulatorData/Templates/FarmersMarket.php index 027acc0f3c..eaa919f6c0 100644 --- a/lib/Config/PopulatorData/Templates/FarmersMarket.php +++ b/lib/Config/PopulatorData/Templates/FarmersMarket.php @@ -36,7 +36,7 @@ class FarmersMarket { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -55,7 +55,7 @@ class FarmersMarket { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -74,7 +74,7 @@ class FarmersMarket { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -133,7 +133,7 @@ class FarmersMarket { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -152,7 +152,7 @@ class FarmersMarket { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -211,7 +211,7 @@ class FarmersMarket { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -244,7 +244,7 @@ class FarmersMarket { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -282,7 +282,7 @@ class FarmersMarket { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -336,7 +336,7 @@ class FarmersMarket { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -371,7 +371,7 @@ class FarmersMarket { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -390,7 +390,7 @@ class FarmersMarket { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -431,7 +431,7 @@ class FarmersMarket { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -502,7 +502,7 @@ class FarmersMarket { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -556,7 +556,7 @@ class FarmersMarket { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -623,7 +623,7 @@ class FarmersMarket { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -690,7 +690,7 @@ class FarmersMarket { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -778,7 +778,7 @@ class FarmersMarket { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -832,7 +832,7 @@ class FarmersMarket { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -882,7 +882,7 @@ class FarmersMarket { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -955,7 +955,7 @@ class FarmersMarket { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1009,7 +1009,7 @@ class FarmersMarket { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1047,7 +1047,7 @@ class FarmersMarket { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1132,7 +1132,7 @@ class FarmersMarket { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1151,7 +1151,7 @@ class FarmersMarket { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/FashionBlog.php b/lib/Config/PopulatorData/Templates/FashionBlog.php index b5ccfa1c6c..25a8eec8c3 100644 --- a/lib/Config/PopulatorData/Templates/FashionBlog.php +++ b/lib/Config/PopulatorData/Templates/FashionBlog.php @@ -35,7 +35,7 @@ class FashionBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -54,7 +54,7 @@ class FashionBlog { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -73,7 +73,7 @@ class FashionBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -192,7 +192,7 @@ class FashionBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -225,7 +225,7 @@ class FashionBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -277,7 +277,7 @@ class FashionBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -312,7 +312,7 @@ class FashionBlog { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -331,7 +331,7 @@ class FashionBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -385,7 +385,7 @@ class FashionBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -418,7 +418,7 @@ class FashionBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -496,7 +496,7 @@ class FashionBlog { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -515,7 +515,7 @@ class FashionBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -550,7 +550,7 @@ class FashionBlog { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -569,7 +569,7 @@ class FashionBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -683,7 +683,7 @@ class FashionBlog { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -702,7 +702,7 @@ class FashionBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/FashionBlogA.php b/lib/Config/PopulatorData/Templates/FashionBlogA.php index 18c315248b..81b97eaef0 100644 --- a/lib/Config/PopulatorData/Templates/FashionBlogA.php +++ b/lib/Config/PopulatorData/Templates/FashionBlogA.php @@ -39,7 +39,7 @@ class FashionBlogA { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -58,7 +58,7 @@ class FashionBlogA { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -77,7 +77,7 @@ class FashionBlogA { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -112,7 +112,7 @@ class FashionBlogA { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -131,7 +131,7 @@ class FashionBlogA { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -157,7 +157,7 @@ class FashionBlogA { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -185,7 +185,7 @@ class FashionBlogA { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -204,7 +204,7 @@ class FashionBlogA { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -275,7 +275,7 @@ class FashionBlogA { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -328,7 +328,7 @@ class FashionBlogA { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -347,7 +347,7 @@ class FashionBlogA { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -401,7 +401,7 @@ class FashionBlogA { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -420,7 +420,7 @@ class FashionBlogA { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -458,7 +458,7 @@ class FashionBlogA { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -524,7 +524,7 @@ class FashionBlogA { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -543,7 +543,7 @@ class FashionBlogA { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -607,7 +607,7 @@ class FashionBlogA { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -647,7 +647,7 @@ class FashionBlogA { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -666,7 +666,7 @@ class FashionBlogA { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -704,7 +704,7 @@ class FashionBlogA { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -789,7 +789,7 @@ class FashionBlogA { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -883,7 +883,7 @@ class FashionBlogA { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -918,7 +918,7 @@ class FashionBlogA { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -937,7 +937,7 @@ class FashionBlogA { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1010,7 +1010,7 @@ class FashionBlogA { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1029,7 +1029,7 @@ class FashionBlogA { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/FashionShop.php b/lib/Config/PopulatorData/Templates/FashionShop.php index 3a996fff5b..7ac0109e1d 100644 --- a/lib/Config/PopulatorData/Templates/FashionShop.php +++ b/lib/Config/PopulatorData/Templates/FashionShop.php @@ -39,7 +39,7 @@ class FashionShop { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -58,7 +58,7 @@ class FashionShop { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -77,7 +77,7 @@ class FashionShop { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -167,7 +167,7 @@ class FashionShop { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -241,7 +241,7 @@ class FashionShop { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -260,7 +260,7 @@ class FashionShop { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -315,7 +315,7 @@ class FashionShop { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -355,7 +355,7 @@ class FashionShop { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -374,7 +374,7 @@ class FashionShop { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -412,7 +412,7 @@ class FashionShop { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -452,7 +452,7 @@ class FashionShop { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -471,7 +471,7 @@ class FashionShop { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -521,7 +521,7 @@ class FashionShop { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -604,7 +604,7 @@ class FashionShop { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -623,7 +623,7 @@ class FashionShop { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/FashionStore.php b/lib/Config/PopulatorData/Templates/FashionStore.php index 85e9c3cf67..eb36001abc 100644 --- a/lib/Config/PopulatorData/Templates/FashionStore.php +++ b/lib/Config/PopulatorData/Templates/FashionStore.php @@ -39,7 +39,7 @@ class FashionStore { 'orientation' => 'vertical', 'image' => array( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -57,7 +57,7 @@ class FashionStore { 'orientation' => 'horizontal', 'image' => array( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -75,7 +75,7 @@ class FashionStore { 'orientation' => 'vertical', 'image' => array( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -129,7 +129,7 @@ class FashionStore { 'orientation' => 'vertical', 'image' => array( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -186,7 +186,7 @@ class FashionStore { 'orientation' => 'vertical', 'image' => array( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -225,7 +225,7 @@ class FashionStore { 'orientation' => 'horizontal', 'image' => array( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -243,7 +243,7 @@ class FashionStore { 'orientation' => 'vertical', 'image' => array( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -295,7 +295,7 @@ class FashionStore { 'orientation' => 'horizontal', 'image' => array( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -313,7 +313,7 @@ class FashionStore { 'orientation' => 'vertical', 'image' => array( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -350,7 +350,7 @@ class FashionStore { 'orientation' => 'vertical', 'image' => array( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -390,7 +390,7 @@ class FashionStore { 'orientation' => 'horizontal', 'image' => array( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -408,7 +408,7 @@ class FashionStore { 'orientation' => 'vertical', 'image' => array( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -446,7 +446,7 @@ class FashionStore { 'orientation' => 'vertical', 'image' => array( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -485,7 +485,7 @@ class FashionStore { 'orientation' => 'horizontal', 'image' => array( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -503,7 +503,7 @@ class FashionStore { 'orientation' => 'vertical', 'image' => array( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -540,7 +540,7 @@ class FashionStore { 'orientation' => 'vertical', 'image' => array( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -580,7 +580,7 @@ class FashionStore { 'orientation' => 'horizontal', 'image' => array( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -598,7 +598,7 @@ class FashionStore { 'orientation' => 'vertical', 'image' => array( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -683,7 +683,7 @@ class FashionStore { 'orientation' => 'horizontal', 'image' => array( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -701,7 +701,7 @@ class FashionStore { 'orientation' => 'vertical', 'image' => array( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -728,7 +728,7 @@ class FashionStore { 'orientation' => 'horizontal', 'image' => array( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -746,7 +746,7 @@ class FashionStore { 'orientation' => 'vertical', 'image' => array( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -783,7 +783,7 @@ class FashionStore { 'orientation' => 'vertical', 'image' => array( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -820,7 +820,7 @@ class FashionStore { 'orientation' => 'vertical', 'image' => array( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -859,7 +859,7 @@ class FashionStore { 'orientation' => 'horizontal', 'image' => array( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -877,7 +877,7 @@ class FashionStore { 'orientation' => 'vertical', 'image' => array( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -911,7 +911,7 @@ class FashionStore { 'orientation' => 'horizontal', 'image' => array( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -929,7 +929,7 @@ class FashionStore { 'orientation' => 'vertical', 'image' => array( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -966,7 +966,7 @@ class FashionStore { 'orientation' => 'vertical', 'image' => array( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1036,7 +1036,7 @@ class FashionStore { 'orientation' => 'vertical', 'image' => array( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1423,7 +1423,7 @@ class FashionStore { ), ), ), - ); + ); } } diff --git a/lib/Config/PopulatorData/Templates/Fitness.php b/lib/Config/PopulatorData/Templates/Fitness.php index d5df8e2d76..a044459356 100644 --- a/lib/Config/PopulatorData/Templates/Fitness.php +++ b/lib/Config/PopulatorData/Templates/Fitness.php @@ -38,7 +38,7 @@ class Fitness { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -56,7 +56,7 @@ class Fitness { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -74,7 +74,7 @@ class Fitness { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -113,7 +113,7 @@ class Fitness { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -131,7 +131,7 @@ class Fitness { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -203,7 +203,7 @@ class Fitness { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -221,7 +221,7 @@ class Fitness { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -248,7 +248,7 @@ class Fitness { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -266,7 +266,7 @@ class Fitness { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -305,7 +305,7 @@ class Fitness { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -323,7 +323,7 @@ class Fitness { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -362,7 +362,7 @@ class Fitness { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -380,7 +380,7 @@ class Fitness { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -429,7 +429,7 @@ class Fitness { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -496,7 +496,7 @@ class Fitness { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -514,7 +514,7 @@ class Fitness { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -548,7 +548,7 @@ class Fitness { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -566,7 +566,7 @@ class Fitness { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -642,7 +642,7 @@ class Fitness { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -660,7 +660,7 @@ class Fitness { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/FlowersWithCoupon.php b/lib/Config/PopulatorData/Templates/FlowersWithCoupon.php index 7101a31d34..b7bab7cdd4 100644 --- a/lib/Config/PopulatorData/Templates/FlowersWithCoupon.php +++ b/lib/Config/PopulatorData/Templates/FlowersWithCoupon.php @@ -39,7 +39,7 @@ class FlowersWithCoupon { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -58,7 +58,7 @@ class FlowersWithCoupon { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -77,7 +77,7 @@ class FlowersWithCoupon { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -124,7 +124,7 @@ class FlowersWithCoupon { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -143,7 +143,7 @@ class FlowersWithCoupon { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -193,7 +193,7 @@ class FlowersWithCoupon { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -266,7 +266,7 @@ class FlowersWithCoupon { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -285,7 +285,7 @@ class FlowersWithCoupon { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -330,7 +330,7 @@ class FlowersWithCoupon { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -349,7 +349,7 @@ class FlowersWithCoupon { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -419,7 +419,7 @@ class FlowersWithCoupon { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -438,7 +438,7 @@ class FlowersWithCoupon { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -473,7 +473,7 @@ class FlowersWithCoupon { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -492,7 +492,7 @@ class FlowersWithCoupon { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -532,7 +532,7 @@ class FlowersWithCoupon { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -551,7 +551,7 @@ class FlowersWithCoupon { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -606,7 +606,7 @@ class FlowersWithCoupon { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -646,7 +646,7 @@ class FlowersWithCoupon { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -665,7 +665,7 @@ class FlowersWithCoupon { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -700,7 +700,7 @@ class FlowersWithCoupon { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -719,7 +719,7 @@ class FlowersWithCoupon { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -757,7 +757,7 @@ class FlowersWithCoupon { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -814,7 +814,7 @@ class FlowersWithCoupon { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -833,7 +833,7 @@ class FlowersWithCoupon { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -868,7 +868,7 @@ class FlowersWithCoupon { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -887,7 +887,7 @@ class FlowersWithCoupon { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -942,7 +942,7 @@ class FlowersWithCoupon { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -982,7 +982,7 @@ class FlowersWithCoupon { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1001,7 +1001,7 @@ class FlowersWithCoupon { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1036,7 +1036,7 @@ class FlowersWithCoupon { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1055,7 +1055,7 @@ class FlowersWithCoupon { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/Guitarist.php b/lib/Config/PopulatorData/Templates/Guitarist.php index 7e6e7f187e..ecb2972592 100644 --- a/lib/Config/PopulatorData/Templates/Guitarist.php +++ b/lib/Config/PopulatorData/Templates/Guitarist.php @@ -35,7 +35,7 @@ class Guitarist { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -54,7 +54,7 @@ class Guitarist { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -73,7 +73,7 @@ class Guitarist { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -108,7 +108,7 @@ class Guitarist { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -127,7 +127,7 @@ class Guitarist { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -177,7 +177,7 @@ class Guitarist { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -255,7 +255,7 @@ class Guitarist { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -314,7 +314,7 @@ class Guitarist { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -333,7 +333,7 @@ class Guitarist { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -387,7 +387,7 @@ class Guitarist { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -420,7 +420,7 @@ class Guitarist { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -485,7 +485,7 @@ class Guitarist { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -504,7 +504,7 @@ class Guitarist { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -567,7 +567,7 @@ class Guitarist { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -607,7 +607,7 @@ class Guitarist { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -626,7 +626,7 @@ class Guitarist { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -664,7 +664,7 @@ class Guitarist { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -729,7 +729,7 @@ class Guitarist { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -748,7 +748,7 @@ class Guitarist { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -816,7 +816,7 @@ class Guitarist { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -835,7 +835,7 @@ class Guitarist { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -885,7 +885,7 @@ class Guitarist { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -936,7 +936,7 @@ class Guitarist { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -988,7 +988,7 @@ class Guitarist { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1007,7 +1007,7 @@ class Guitarist { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1042,7 +1042,7 @@ class Guitarist { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1061,7 +1061,7 @@ class Guitarist { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1111,7 +1111,7 @@ class Guitarist { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1161,7 +1161,7 @@ class Guitarist { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1213,7 +1213,7 @@ class Guitarist { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1232,7 +1232,7 @@ class Guitarist { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1282,7 +1282,7 @@ class Guitarist { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1301,7 +1301,7 @@ class Guitarist { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/HealthyFoodBlog.php b/lib/Config/PopulatorData/Templates/HealthyFoodBlog.php index 1767e4e52d..3334205646 100644 --- a/lib/Config/PopulatorData/Templates/HealthyFoodBlog.php +++ b/lib/Config/PopulatorData/Templates/HealthyFoodBlog.php @@ -36,7 +36,7 @@ class HealthyFoodBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -55,7 +55,7 @@ class HealthyFoodBlog { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -74,7 +74,7 @@ class HealthyFoodBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -109,7 +109,7 @@ class HealthyFoodBlog { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -128,7 +128,7 @@ class HealthyFoodBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -166,7 +166,7 @@ class HealthyFoodBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -206,7 +206,7 @@ class HealthyFoodBlog { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -225,7 +225,7 @@ class HealthyFoodBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -275,7 +275,7 @@ class HealthyFoodBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -308,7 +308,7 @@ class HealthyFoodBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -410,7 +410,7 @@ class HealthyFoodBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -461,7 +461,7 @@ class HealthyFoodBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -496,7 +496,7 @@ class HealthyFoodBlog { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -515,7 +515,7 @@ class HealthyFoodBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -558,7 +558,7 @@ class HealthyFoodBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -610,7 +610,7 @@ class HealthyFoodBlog { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -629,7 +629,7 @@ class HealthyFoodBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -664,7 +664,7 @@ class HealthyFoodBlog { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -683,7 +683,7 @@ class HealthyFoodBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -743,7 +743,7 @@ class HealthyFoodBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -797,7 +797,7 @@ class HealthyFoodBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -835,7 +835,7 @@ class HealthyFoodBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -920,7 +920,7 @@ class HealthyFoodBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -955,7 +955,7 @@ class HealthyFoodBlog { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -974,7 +974,7 @@ class HealthyFoodBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1009,7 +1009,7 @@ class HealthyFoodBlog { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1028,7 +1028,7 @@ class HealthyFoodBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1063,7 +1063,7 @@ class HealthyFoodBlog { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1082,7 +1082,7 @@ class HealthyFoodBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1123,7 +1123,7 @@ class HealthyFoodBlog { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1142,7 +1142,7 @@ class HealthyFoodBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1209,7 +1209,7 @@ class HealthyFoodBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1276,7 +1276,7 @@ class HealthyFoodBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1345,7 +1345,7 @@ class HealthyFoodBlog { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1364,7 +1364,7 @@ class HealthyFoodBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1414,7 +1414,7 @@ class HealthyFoodBlog { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1433,7 +1433,7 @@ class HealthyFoodBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1500,7 +1500,7 @@ class HealthyFoodBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1567,7 +1567,7 @@ class HealthyFoodBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1636,7 +1636,7 @@ class HealthyFoodBlog { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1655,7 +1655,7 @@ class HealthyFoodBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1705,7 +1705,7 @@ class HealthyFoodBlog { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1724,7 +1724,7 @@ class HealthyFoodBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1791,7 +1791,7 @@ class HealthyFoodBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1870,7 +1870,7 @@ class HealthyFoodBlog { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1889,7 +1889,7 @@ class HealthyFoodBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1939,7 +1939,7 @@ class HealthyFoodBlog { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1958,7 +1958,7 @@ class HealthyFoodBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1993,7 +1993,7 @@ class HealthyFoodBlog { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -2012,7 +2012,7 @@ class HealthyFoodBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -2050,7 +2050,7 @@ class HealthyFoodBlog { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/Hotels.php b/lib/Config/PopulatorData/Templates/Hotels.php index f4ab8ec5e9..4ce61236db 100644 --- a/lib/Config/PopulatorData/Templates/Hotels.php +++ b/lib/Config/PopulatorData/Templates/Hotels.php @@ -38,7 +38,7 @@ class Hotels { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -56,7 +56,7 @@ class Hotels { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -74,7 +74,7 @@ class Hotels { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -111,7 +111,7 @@ class Hotels { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -148,7 +148,7 @@ class Hotels { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -205,7 +205,7 @@ class Hotels { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -295,7 +295,7 @@ class Hotels { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -326,7 +326,7 @@ class Hotels { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -344,7 +344,7 @@ class Hotels { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -414,7 +414,7 @@ class Hotels { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -452,7 +452,7 @@ class Hotels { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -510,7 +510,7 @@ class Hotels { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -548,7 +548,7 @@ class Hotels { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -606,7 +606,7 @@ class Hotels { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -644,7 +644,7 @@ class Hotels { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -684,7 +684,7 @@ class Hotels { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -702,7 +702,7 @@ class Hotels { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -779,7 +779,7 @@ class Hotels { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -797,7 +797,7 @@ class Hotels { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -831,7 +831,7 @@ class Hotels { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -849,7 +849,7 @@ class Hotels { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -881,7 +881,7 @@ class Hotels { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -918,7 +918,7 @@ class Hotels { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -952,7 +952,7 @@ class Hotels { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -970,7 +970,7 @@ class Hotels { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/IndustryConference.php b/lib/Config/PopulatorData/Templates/IndustryConference.php index 139d4a7fe6..17b41e235f 100644 --- a/lib/Config/PopulatorData/Templates/IndustryConference.php +++ b/lib/Config/PopulatorData/Templates/IndustryConference.php @@ -39,7 +39,7 @@ class IndustryConference { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -58,7 +58,7 @@ class IndustryConference { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -77,7 +77,7 @@ class IndustryConference { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -129,7 +129,7 @@ class IndustryConference { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -148,7 +148,7 @@ class IndustryConference { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -195,7 +195,7 @@ class IndustryConference { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -262,7 +262,7 @@ class IndustryConference { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -365,7 +365,7 @@ class IndustryConference { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -384,7 +384,7 @@ class IndustryConference { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -424,7 +424,7 @@ class IndustryConference { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -443,7 +443,7 @@ class IndustryConference { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -497,7 +497,7 @@ class IndustryConference { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -587,7 +587,7 @@ class IndustryConference { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -606,7 +606,7 @@ class IndustryConference { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -641,7 +641,7 @@ class IndustryConference { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -660,7 +660,7 @@ class IndustryConference { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -715,7 +715,7 @@ class IndustryConference { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -734,7 +734,7 @@ class IndustryConference { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -784,7 +784,7 @@ class IndustryConference { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -849,7 +849,7 @@ class IndustryConference { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -868,7 +868,7 @@ class IndustryConference { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -935,7 +935,7 @@ class IndustryConference { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -954,7 +954,7 @@ class IndustryConference { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/JazzClub.php b/lib/Config/PopulatorData/Templates/JazzClub.php index ca9aab08a8..b76f3a103e 100644 --- a/lib/Config/PopulatorData/Templates/JazzClub.php +++ b/lib/Config/PopulatorData/Templates/JazzClub.php @@ -35,7 +35,7 @@ class JazzClub { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -73,7 +73,7 @@ class JazzClub { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -173,7 +173,7 @@ class JazzClub { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -192,7 +192,7 @@ class JazzClub { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -282,7 +282,7 @@ class JazzClub { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -301,7 +301,7 @@ class JazzClub { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -339,7 +339,7 @@ class JazzClub { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -405,7 +405,7 @@ class JazzClub { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -424,7 +424,7 @@ class JazzClub { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -488,7 +488,7 @@ class JazzClub { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -528,7 +528,7 @@ class JazzClub { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -547,7 +547,7 @@ class JazzClub { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -585,7 +585,7 @@ class JazzClub { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -651,7 +651,7 @@ class JazzClub { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -670,7 +670,7 @@ class JazzClub { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -705,7 +705,7 @@ class JazzClub { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -724,7 +724,7 @@ class JazzClub { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -785,7 +785,7 @@ class JazzClub { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -804,7 +804,7 @@ class JazzClub { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/KidsClothing.php b/lib/Config/PopulatorData/Templates/KidsClothing.php index 097bf626ac..12d056e8e3 100644 --- a/lib/Config/PopulatorData/Templates/KidsClothing.php +++ b/lib/Config/PopulatorData/Templates/KidsClothing.php @@ -39,7 +39,7 @@ class KidsClothing { 'image' => array ( 'display' => 'scale', - 'src' => NULL, + 'src' => null, ), 'styles' => array ( @@ -57,7 +57,7 @@ class KidsClothing { 'image' => array ( 'display' => 'scale', - 'src' => NULL, + 'src' => null, ), 'styles' => array ( @@ -75,7 +75,7 @@ class KidsClothing { 'image' => array ( 'display' => 'scale', - 'src' => NULL, + 'src' => null, ), 'styles' => array ( @@ -109,7 +109,7 @@ class KidsClothing { 'image' => array ( 'display' => 'scale', - 'src' => NULL, + 'src' => null, ), 'styles' => array ( @@ -127,7 +127,7 @@ class KidsClothing { 'image' => array ( 'display' => 'scale', - 'src' => NULL, + 'src' => null, ), 'styles' => array ( @@ -187,7 +187,7 @@ class KidsClothing { 'image' => array ( 'display' => 'scale', - 'src' => NULL, + 'src' => null, ), 'styles' => array ( @@ -224,7 +224,7 @@ class KidsClothing { 'image' => array ( 'display' => 'scale', - 'src' => NULL, + 'src' => null, ), 'styles' => array ( @@ -286,7 +286,7 @@ class KidsClothing { 'image' => array ( 'display' => 'scale', - 'src' => NULL, + 'src' => null, ), 'styles' => array ( @@ -304,7 +304,7 @@ class KidsClothing { 'image' => array ( 'display' => 'scale', - 'src' => NULL, + 'src' => null, ), 'styles' => array ( @@ -338,7 +338,7 @@ class KidsClothing { 'image' => array ( 'display' => 'scale', - 'src' => NULL, + 'src' => null, ), 'styles' => array ( @@ -356,7 +356,7 @@ class KidsClothing { 'image' => array ( 'display' => 'scale', - 'src' => NULL, + 'src' => null, ), 'styles' => array ( @@ -381,7 +381,7 @@ class KidsClothing { 'image' => array ( 'display' => 'scale', - 'src' => NULL, + 'src' => null, ), 'styles' => array ( @@ -406,7 +406,7 @@ class KidsClothing { 'image' => array ( 'display' => 'scale', - 'src' => NULL, + 'src' => null, ), 'styles' => array ( @@ -450,7 +450,7 @@ class KidsClothing { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -500,7 +500,7 @@ class KidsClothing { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -532,7 +532,7 @@ class KidsClothing { 'image' => array ( 'display' => 'scale', - 'src' => NULL, + 'src' => null, ), 'styles' => array ( @@ -550,7 +550,7 @@ class KidsClothing { 'image' => array ( 'display' => 'scale', - 'src' => NULL, + 'src' => null, ), 'styles' => array ( @@ -577,7 +577,7 @@ class KidsClothing { 'image' => array ( 'display' => 'scale', - 'src' => NULL, + 'src' => null, ), 'styles' => array ( @@ -595,7 +595,7 @@ class KidsClothing { 'image' => array ( 'display' => 'scale', - 'src' => NULL, + 'src' => null, ), 'styles' => array ( @@ -629,7 +629,7 @@ class KidsClothing { 'image' => array ( 'display' => 'scale', - 'src' => NULL, + 'src' => null, ), 'styles' => array ( @@ -647,7 +647,7 @@ class KidsClothing { 'image' => array ( 'display' => 'scale', - 'src' => NULL, + 'src' => null, ), 'styles' => array ( @@ -684,7 +684,7 @@ class KidsClothing { 'image' => array ( 'display' => 'scale', - 'src' => NULL, + 'src' => null, ), 'styles' => array ( @@ -756,7 +756,7 @@ class KidsClothing { 'image' => array ( 'display' => 'scale', - 'src' => NULL, + 'src' => null, ), 'styles' => array ( @@ -814,7 +814,7 @@ class KidsClothing { 'image' => array ( 'display' => 'scale', - 'src' => NULL, + 'src' => null, ), 'styles' => array ( @@ -832,7 +832,7 @@ class KidsClothing { 'image' => array ( 'display' => 'scale', - 'src' => NULL, + 'src' => null, ), 'styles' => array ( @@ -866,7 +866,7 @@ class KidsClothing { 'image' => array ( 'display' => 'scale', - 'src' => NULL, + 'src' => null, ), 'styles' => array ( @@ -884,7 +884,7 @@ class KidsClothing { 'image' => array ( 'display' => 'scale', - 'src' => NULL, + 'src' => null, ), 'styles' => array ( @@ -923,7 +923,7 @@ class KidsClothing { 'image' => array ( 'display' => 'scale', - 'src' => NULL, + 'src' => null, ), 'styles' => array ( @@ -941,7 +941,7 @@ class KidsClothing { 'image' => array ( 'display' => 'scale', - 'src' => NULL, + 'src' => null, ), 'styles' => array ( @@ -975,7 +975,7 @@ class KidsClothing { 'image' => array ( 'display' => 'scale', - 'src' => NULL, + 'src' => null, ), 'styles' => array ( @@ -993,7 +993,7 @@ class KidsClothing { 'image' => array ( 'display' => 'scale', - 'src' => NULL, + 'src' => null, ), 'styles' => array ( @@ -1060,7 +1060,7 @@ class KidsClothing { 'image' => array ( 'display' => 'scale', - 'src' => NULL, + 'src' => null, ), 'styles' => array ( @@ -1127,7 +1127,7 @@ class KidsClothing { 'image' => array ( 'display' => 'scale', - 'src' => NULL, + 'src' => null, ), 'styles' => array ( @@ -1196,7 +1196,7 @@ class KidsClothing { 'image' => array ( 'display' => 'scale', - 'src' => NULL, + 'src' => null, ), 'styles' => array ( @@ -1214,7 +1214,7 @@ class KidsClothing { 'image' => array ( 'display' => 'scale', - 'src' => NULL, + 'src' => null, ), 'styles' => array ( @@ -1253,7 +1253,7 @@ class KidsClothing { 'image' => array ( 'display' => 'scale', - 'src' => NULL, + 'src' => null, ), 'styles' => array ( @@ -1271,7 +1271,7 @@ class KidsClothing { 'image' => array ( 'display' => 'scale', - 'src' => NULL, + 'src' => null, ), 'styles' => array ( diff --git a/lib/Config/PopulatorData/Templates/LifestyleBlogA.php b/lib/Config/PopulatorData/Templates/LifestyleBlogA.php index e1163fb0ff..53f4ea507e 100644 --- a/lib/Config/PopulatorData/Templates/LifestyleBlogA.php +++ b/lib/Config/PopulatorData/Templates/LifestyleBlogA.php @@ -39,7 +39,7 @@ class LifestyleBlogA { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -58,7 +58,7 @@ class LifestyleBlogA { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -77,7 +77,7 @@ class LifestyleBlogA { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -233,7 +233,7 @@ class LifestyleBlogA { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -252,7 +252,7 @@ class LifestyleBlogA { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -315,7 +315,7 @@ class LifestyleBlogA { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -334,7 +334,7 @@ class LifestyleBlogA { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -369,7 +369,7 @@ class LifestyleBlogA { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -388,7 +388,7 @@ class LifestyleBlogA { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -426,7 +426,7 @@ class LifestyleBlogA { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -467,7 +467,7 @@ class LifestyleBlogA { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -486,7 +486,7 @@ class LifestyleBlogA { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -526,7 +526,7 @@ class LifestyleBlogA { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -545,7 +545,7 @@ class LifestyleBlogA { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -580,7 +580,7 @@ class LifestyleBlogA { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -599,7 +599,7 @@ class LifestyleBlogA { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -642,7 +642,7 @@ class LifestyleBlogA { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -685,7 +685,7 @@ class LifestyleBlogA { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -730,7 +730,7 @@ class LifestyleBlogA { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -749,7 +749,7 @@ class LifestyleBlogA { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -789,7 +789,7 @@ class LifestyleBlogA { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -808,7 +808,7 @@ class LifestyleBlogA { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/LifestyleBlogB.php b/lib/Config/PopulatorData/Templates/LifestyleBlogB.php index 99428b0384..833f0f200c 100644 --- a/lib/Config/PopulatorData/Templates/LifestyleBlogB.php +++ b/lib/Config/PopulatorData/Templates/LifestyleBlogB.php @@ -39,7 +39,7 @@ class LifestyleBlogB { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -58,7 +58,7 @@ class LifestyleBlogB { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -77,7 +77,7 @@ class LifestyleBlogB { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -127,7 +127,7 @@ class LifestyleBlogB { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -186,7 +186,7 @@ class LifestyleBlogB { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -205,7 +205,7 @@ class LifestyleBlogB { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -259,7 +259,7 @@ class LifestyleBlogB { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -311,7 +311,7 @@ class LifestyleBlogB { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -330,7 +330,7 @@ class LifestyleBlogB { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -359,7 +359,7 @@ class LifestyleBlogB { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -378,7 +378,7 @@ class LifestyleBlogB { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -405,7 +405,7 @@ class LifestyleBlogB { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -432,7 +432,7 @@ class LifestyleBlogB { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -461,7 +461,7 @@ class LifestyleBlogB { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -480,7 +480,7 @@ class LifestyleBlogB { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -551,7 +551,7 @@ class LifestyleBlogB { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -570,7 +570,7 @@ class LifestyleBlogB { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -608,7 +608,7 @@ class LifestyleBlogB { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -650,7 +650,7 @@ class LifestyleBlogB { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -669,7 +669,7 @@ class LifestyleBlogB { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -704,7 +704,7 @@ class LifestyleBlogB { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -723,7 +723,7 @@ class LifestyleBlogB { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -763,7 +763,7 @@ class LifestyleBlogB { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -803,7 +803,7 @@ class LifestyleBlogB { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -822,7 +822,7 @@ class LifestyleBlogB { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -857,7 +857,7 @@ class LifestyleBlogB { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -876,7 +876,7 @@ class LifestyleBlogB { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -914,7 +914,7 @@ class LifestyleBlogB { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -956,7 +956,7 @@ class LifestyleBlogB { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -975,7 +975,7 @@ class LifestyleBlogB { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1010,7 +1010,7 @@ class LifestyleBlogB { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1029,7 +1029,7 @@ class LifestyleBlogB { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/Minimal.php b/lib/Config/PopulatorData/Templates/Minimal.php index 078a346cf1..a1777621a6 100644 --- a/lib/Config/PopulatorData/Templates/Minimal.php +++ b/lib/Config/PopulatorData/Templates/Minimal.php @@ -38,7 +38,7 @@ class Minimal { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -56,7 +56,7 @@ class Minimal { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -74,7 +74,7 @@ class Minimal { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -108,7 +108,7 @@ class Minimal { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -126,7 +126,7 @@ class Minimal { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -187,7 +187,7 @@ class Minimal { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -226,7 +226,7 @@ class Minimal { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -244,7 +244,7 @@ class Minimal { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -310,7 +310,7 @@ class Minimal { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -328,7 +328,7 @@ class Minimal { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -365,7 +365,7 @@ class Minimal { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -395,7 +395,7 @@ class Minimal { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -413,7 +413,7 @@ class Minimal { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -450,7 +450,7 @@ class Minimal { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -480,7 +480,7 @@ class Minimal { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -498,7 +498,7 @@ class Minimal { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -535,7 +535,7 @@ class Minimal { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -565,7 +565,7 @@ class Minimal { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -583,7 +583,7 @@ class Minimal { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -617,7 +617,7 @@ class Minimal { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -635,7 +635,7 @@ class Minimal { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -684,7 +684,7 @@ class Minimal { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -754,7 +754,7 @@ class Minimal { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -813,7 +813,7 @@ class Minimal { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -831,7 +831,7 @@ class Minimal { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/ModularStyleStories.php b/lib/Config/PopulatorData/Templates/ModularStyleStories.php index 5a4b7c5374..f15bf94c17 100644 --- a/lib/Config/PopulatorData/Templates/ModularStyleStories.php +++ b/lib/Config/PopulatorData/Templates/ModularStyleStories.php @@ -39,7 +39,7 @@ class ModularStyleStories { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -58,7 +58,7 @@ class ModularStyleStories { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -77,7 +77,7 @@ class ModularStyleStories { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -112,7 +112,7 @@ class ModularStyleStories { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -131,7 +131,7 @@ class ModularStyleStories { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -181,7 +181,7 @@ class ModularStyleStories { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -264,7 +264,7 @@ class ModularStyleStories { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -283,7 +283,7 @@ class ModularStyleStories { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -386,7 +386,7 @@ class ModularStyleStories { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -405,7 +405,7 @@ class ModularStyleStories { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -440,7 +440,7 @@ class ModularStyleStories { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -459,7 +459,7 @@ class ModularStyleStories { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -527,7 +527,7 @@ class ModularStyleStories { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -597,7 +597,7 @@ class ModularStyleStories { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -616,7 +616,7 @@ class ModularStyleStories { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -651,7 +651,7 @@ class ModularStyleStories { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -670,7 +670,7 @@ class ModularStyleStories { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -737,7 +737,7 @@ class ModularStyleStories { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -804,7 +804,7 @@ class ModularStyleStories { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -873,7 +873,7 @@ class ModularStyleStories { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -892,7 +892,7 @@ class ModularStyleStories { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -927,7 +927,7 @@ class ModularStyleStories { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -946,7 +946,7 @@ class ModularStyleStories { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/Mosque.php b/lib/Config/PopulatorData/Templates/Mosque.php index 8758672a8c..517ead4bd9 100644 --- a/lib/Config/PopulatorData/Templates/Mosque.php +++ b/lib/Config/PopulatorData/Templates/Mosque.php @@ -35,7 +35,7 @@ class Mosque { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -54,7 +54,7 @@ class Mosque { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -73,7 +73,7 @@ class Mosque { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -108,7 +108,7 @@ class Mosque { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -127,7 +127,7 @@ class Mosque { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -193,7 +193,7 @@ class Mosque { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -264,7 +264,7 @@ class Mosque { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -283,7 +283,7 @@ class Mosque { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -323,7 +323,7 @@ class Mosque { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -342,7 +342,7 @@ class Mosque { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -380,7 +380,7 @@ class Mosque { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -411,7 +411,7 @@ class Mosque { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -430,7 +430,7 @@ class Mosque { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -468,7 +468,7 @@ class Mosque { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -499,7 +499,7 @@ class Mosque { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -518,7 +518,7 @@ class Mosque { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -556,7 +556,7 @@ class Mosque { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -587,7 +587,7 @@ class Mosque { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -606,7 +606,7 @@ class Mosque { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -641,7 +641,7 @@ class Mosque { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -660,7 +660,7 @@ class Mosque { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -698,7 +698,7 @@ class Mosque { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -717,7 +717,7 @@ class Mosque { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -757,7 +757,7 @@ class Mosque { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -776,7 +776,7 @@ class Mosque { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -826,7 +826,7 @@ class Mosque { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -876,7 +876,7 @@ class Mosque { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -928,7 +928,7 @@ class Mosque { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -947,7 +947,7 @@ class Mosque { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -982,7 +982,7 @@ class Mosque { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1001,7 +1001,7 @@ class Mosque { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1051,7 +1051,7 @@ class Mosque { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1101,7 +1101,7 @@ class Mosque { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1153,7 +1153,7 @@ class Mosque { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1172,7 +1172,7 @@ class Mosque { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1212,7 +1212,7 @@ class Mosque { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1231,7 +1231,7 @@ class Mosque { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1283,7 +1283,7 @@ class Mosque { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1302,7 +1302,7 @@ class Mosque { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1380,7 +1380,7 @@ class Mosque { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/Motor.php b/lib/Config/PopulatorData/Templates/Motor.php index d37d77e7d7..0e181e5f55 100644 --- a/lib/Config/PopulatorData/Templates/Motor.php +++ b/lib/Config/PopulatorData/Templates/Motor.php @@ -35,7 +35,7 @@ class Motor { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -54,7 +54,7 @@ class Motor { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -73,7 +73,7 @@ class Motor { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -108,7 +108,7 @@ class Motor { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -127,7 +127,7 @@ class Motor { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -205,7 +205,7 @@ class Motor { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -244,7 +244,7 @@ class Motor { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -343,7 +343,7 @@ class Motor { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -410,7 +410,7 @@ class Motor { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -445,7 +445,7 @@ class Motor { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -464,7 +464,7 @@ class Motor { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -519,7 +519,7 @@ class Motor { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -538,7 +538,7 @@ class Motor { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -591,7 +591,7 @@ class Motor { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -667,7 +667,7 @@ class Motor { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -686,7 +686,7 @@ class Motor { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -739,7 +739,7 @@ class Motor { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -758,7 +758,7 @@ class Motor { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/Music.php b/lib/Config/PopulatorData/Templates/Music.php index fb87bc431b..c8a2878cb3 100644 --- a/lib/Config/PopulatorData/Templates/Music.php +++ b/lib/Config/PopulatorData/Templates/Music.php @@ -35,7 +35,7 @@ class Music { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -53,7 +53,7 @@ class Music { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -71,7 +71,7 @@ class Music { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -140,7 +140,7 @@ class Music { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -198,7 +198,7 @@ class Music { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -216,7 +216,7 @@ class Music { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -255,7 +255,7 @@ class Music { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -273,7 +273,7 @@ class Music { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -317,7 +317,7 @@ class Music { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -361,7 +361,7 @@ class Music { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -407,7 +407,7 @@ class Music { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -425,7 +425,7 @@ class Music { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -469,7 +469,7 @@ class Music { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -513,7 +513,7 @@ class Music { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -559,7 +559,7 @@ class Music { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -577,7 +577,7 @@ class Music { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -621,7 +621,7 @@ class Music { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -665,7 +665,7 @@ class Music { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -711,7 +711,7 @@ class Music { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -729,7 +729,7 @@ class Music { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -773,7 +773,7 @@ class Music { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -817,7 +817,7 @@ class Music { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -863,7 +863,7 @@ class Music { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -881,7 +881,7 @@ class Music { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -915,7 +915,7 @@ class Music { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -933,7 +933,7 @@ class Music { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -967,7 +967,7 @@ class Music { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -985,7 +985,7 @@ class Music { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1017,7 +1017,7 @@ class Music { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1098,7 +1098,7 @@ class Music { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/NewsDay.php b/lib/Config/PopulatorData/Templates/NewsDay.php index 9e4cbfb574..0c0cf91560 100644 --- a/lib/Config/PopulatorData/Templates/NewsDay.php +++ b/lib/Config/PopulatorData/Templates/NewsDay.php @@ -34,7 +34,7 @@ class NewsDay { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -52,7 +52,7 @@ class NewsDay { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -70,7 +70,7 @@ class NewsDay { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -121,7 +121,7 @@ class NewsDay { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -139,7 +139,7 @@ class NewsDay { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -173,7 +173,7 @@ class NewsDay { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -191,7 +191,7 @@ class NewsDay { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -289,7 +289,7 @@ class NewsDay { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -307,7 +307,7 @@ class NewsDay { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -378,7 +378,7 @@ class NewsDay { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -451,7 +451,7 @@ class NewsDay { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -469,7 +469,7 @@ class NewsDay { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -527,7 +527,7 @@ class NewsDay { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -545,7 +545,7 @@ class NewsDay { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -591,7 +591,7 @@ class NewsDay { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -695,7 +695,7 @@ class NewsDay { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -713,7 +713,7 @@ class NewsDay { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/NewspaperTraditional.php b/lib/Config/PopulatorData/Templates/NewspaperTraditional.php index 3e5b93d628..425ab10af5 100644 --- a/lib/Config/PopulatorData/Templates/NewspaperTraditional.php +++ b/lib/Config/PopulatorData/Templates/NewspaperTraditional.php @@ -39,7 +39,7 @@ class NewspaperTraditional { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -58,7 +58,7 @@ class NewspaperTraditional { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -77,7 +77,7 @@ class NewspaperTraditional { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -115,7 +115,7 @@ class NewspaperTraditional { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -174,7 +174,7 @@ class NewspaperTraditional { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -193,7 +193,7 @@ class NewspaperTraditional { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -231,7 +231,7 @@ class NewspaperTraditional { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -302,7 +302,7 @@ class NewspaperTraditional { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -321,7 +321,7 @@ class NewspaperTraditional { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -359,7 +359,7 @@ class NewspaperTraditional { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -397,7 +397,7 @@ class NewspaperTraditional { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -437,7 +437,7 @@ class NewspaperTraditional { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -456,7 +456,7 @@ class NewspaperTraditional { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -583,7 +583,7 @@ class NewspaperTraditional { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -602,7 +602,7 @@ class NewspaperTraditional { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -637,7 +637,7 @@ class NewspaperTraditional { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -656,7 +656,7 @@ class NewspaperTraditional { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -706,7 +706,7 @@ class NewspaperTraditional { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -801,7 +801,7 @@ class NewspaperTraditional { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -820,7 +820,7 @@ class NewspaperTraditional { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/NotSoMedium.php b/lib/Config/PopulatorData/Templates/NotSoMedium.php index 42c87f731d..113f01232b 100644 --- a/lib/Config/PopulatorData/Templates/NotSoMedium.php +++ b/lib/Config/PopulatorData/Templates/NotSoMedium.php @@ -39,7 +39,7 @@ class NotSoMedium { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -58,7 +58,7 @@ class NotSoMedium { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -77,7 +77,7 @@ class NotSoMedium { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -112,7 +112,7 @@ class NotSoMedium { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -131,7 +131,7 @@ class NotSoMedium { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -169,7 +169,7 @@ class NotSoMedium { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -202,7 +202,7 @@ class NotSoMedium { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -275,7 +275,7 @@ class NotSoMedium { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -294,7 +294,7 @@ class NotSoMedium { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -427,7 +427,7 @@ class NotSoMedium { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -446,7 +446,7 @@ class NotSoMedium { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -557,7 +557,7 @@ class NotSoMedium { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -576,7 +576,7 @@ class NotSoMedium { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -830,7 +830,7 @@ class NotSoMedium { array ( 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/Painter.php b/lib/Config/PopulatorData/Templates/Painter.php index 44f09e683b..70387f97a8 100644 --- a/lib/Config/PopulatorData/Templates/Painter.php +++ b/lib/Config/PopulatorData/Templates/Painter.php @@ -35,7 +35,7 @@ class Painter { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -54,7 +54,7 @@ class Painter { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -73,7 +73,7 @@ class Painter { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -132,7 +132,7 @@ class Painter { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -151,7 +151,7 @@ class Painter { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -205,7 +205,7 @@ class Painter { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -269,7 +269,7 @@ class Painter { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -288,7 +288,7 @@ class Painter { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -323,7 +323,7 @@ class Painter { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -342,7 +342,7 @@ class Painter { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -368,7 +368,7 @@ class Painter { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -394,7 +394,7 @@ class Painter { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -441,7 +441,7 @@ class Painter { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -509,7 +509,7 @@ class Painter { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -590,7 +590,7 @@ class Painter { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -609,7 +609,7 @@ class Painter { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -649,7 +649,7 @@ class Painter { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -668,7 +668,7 @@ class Painter { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -712,7 +712,7 @@ class Painter { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -756,7 +756,7 @@ class Painter { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -802,7 +802,7 @@ class Painter { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -821,7 +821,7 @@ class Painter { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -875,7 +875,7 @@ class Painter { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -983,7 +983,7 @@ class Painter { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1002,7 +1002,7 @@ class Painter { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/Phone.php b/lib/Config/PopulatorData/Templates/Phone.php index a85c3d5ee8..32edecbefe 100644 --- a/lib/Config/PopulatorData/Templates/Phone.php +++ b/lib/Config/PopulatorData/Templates/Phone.php @@ -38,7 +38,7 @@ class Phone { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -56,7 +56,7 @@ class Phone { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -74,7 +74,7 @@ class Phone { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -125,7 +125,7 @@ class Phone { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -143,7 +143,7 @@ class Phone { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -269,7 +269,7 @@ class Phone { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -287,7 +287,7 @@ class Phone { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -315,7 +315,7 @@ class Phone { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -400,7 +400,7 @@ class Phone { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/Photography.php b/lib/Config/PopulatorData/Templates/Photography.php index 4778b6f8d7..391dfcd765 100644 --- a/lib/Config/PopulatorData/Templates/Photography.php +++ b/lib/Config/PopulatorData/Templates/Photography.php @@ -35,7 +35,7 @@ class Photography { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -54,7 +54,7 @@ class Photography { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -73,7 +73,7 @@ class Photography { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -123,7 +123,7 @@ class Photography { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -163,7 +163,7 @@ class Photography { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -182,7 +182,7 @@ class Photography { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -217,7 +217,7 @@ class Photography { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -236,7 +236,7 @@ class Photography { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -264,7 +264,7 @@ class Photography { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -283,7 +283,7 @@ class Photography { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -318,7 +318,7 @@ class Photography { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -337,7 +337,7 @@ class Photography { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -377,7 +377,7 @@ class Photography { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -396,7 +396,7 @@ class Photography { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -435,7 +435,7 @@ class Photography { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -494,7 +494,7 @@ class Photography { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -513,7 +513,7 @@ class Photography { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -548,7 +548,7 @@ class Photography { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -567,7 +567,7 @@ class Photography { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -607,7 +607,7 @@ class Photography { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -626,7 +626,7 @@ class Photography { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -665,7 +665,7 @@ class Photography { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -724,7 +724,7 @@ class Photography { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -743,7 +743,7 @@ class Photography { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -778,7 +778,7 @@ class Photography { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -797,7 +797,7 @@ class Photography { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -837,7 +837,7 @@ class Photography { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -856,7 +856,7 @@ class Photography { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -895,7 +895,7 @@ class Photography { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -954,7 +954,7 @@ class Photography { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -973,7 +973,7 @@ class Photography { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1008,7 +1008,7 @@ class Photography { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1027,7 +1027,7 @@ class Photography { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1055,7 +1055,7 @@ class Photography { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1074,7 +1074,7 @@ class Photography { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1112,7 +1112,7 @@ class Photography { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1150,7 +1150,7 @@ class Photography { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1190,7 +1190,7 @@ class Photography { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1209,7 +1209,7 @@ class Photography { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1247,7 +1247,7 @@ class Photography { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1285,7 +1285,7 @@ class Photography { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1325,7 +1325,7 @@ class Photography { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1344,7 +1344,7 @@ class Photography { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1382,7 +1382,7 @@ class Photography { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1420,7 +1420,7 @@ class Photography { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1460,7 +1460,7 @@ class Photography { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1479,7 +1479,7 @@ class Photography { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1514,7 +1514,7 @@ class Photography { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1533,7 +1533,7 @@ class Photography { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1617,7 +1617,7 @@ class Photography { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1636,7 +1636,7 @@ class Photography { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/Poet.php b/lib/Config/PopulatorData/Templates/Poet.php index db0040284b..ceea4576f8 100644 --- a/lib/Config/PopulatorData/Templates/Poet.php +++ b/lib/Config/PopulatorData/Templates/Poet.php @@ -35,7 +35,7 @@ class Poet { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -54,7 +54,7 @@ class Poet { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -73,7 +73,7 @@ class Poet { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -127,7 +127,7 @@ class Poet { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -160,7 +160,7 @@ class Poet { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -266,7 +266,7 @@ class Poet { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -285,7 +285,7 @@ class Poet { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -325,7 +325,7 @@ class Poet { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -365,7 +365,7 @@ class Poet { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -384,7 +384,7 @@ class Poet { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -469,7 +469,7 @@ class Poet { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -488,7 +488,7 @@ class Poet { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -529,7 +529,7 @@ class Poet { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -548,7 +548,7 @@ class Poet { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -610,7 +610,7 @@ class Poet { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -672,7 +672,7 @@ class Poet { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -736,7 +736,7 @@ class Poet { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -755,7 +755,7 @@ class Poet { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -790,7 +790,7 @@ class Poet { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -809,7 +809,7 @@ class Poet { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -847,7 +847,7 @@ class Poet { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/PrimarySchool.php b/lib/Config/PopulatorData/Templates/PrimarySchool.php index 1e4345faf0..6022aa26fb 100644 --- a/lib/Config/PopulatorData/Templates/PrimarySchool.php +++ b/lib/Config/PopulatorData/Templates/PrimarySchool.php @@ -36,7 +36,7 @@ class PrimarySchool { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -55,7 +55,7 @@ class PrimarySchool { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -74,7 +74,7 @@ class PrimarySchool { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -152,7 +152,7 @@ class PrimarySchool { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -216,7 +216,7 @@ class PrimarySchool { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -235,7 +235,7 @@ class PrimarySchool { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -261,7 +261,7 @@ class PrimarySchool { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -287,7 +287,7 @@ class PrimarySchool { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -334,7 +334,7 @@ class PrimarySchool { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -409,7 +409,7 @@ class PrimarySchool { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -428,7 +428,7 @@ class PrimarySchool { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -463,7 +463,7 @@ class PrimarySchool { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -482,7 +482,7 @@ class PrimarySchool { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -585,7 +585,7 @@ class PrimarySchool { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -697,7 +697,7 @@ class PrimarySchool { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -716,7 +716,7 @@ class PrimarySchool { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -751,7 +751,7 @@ class PrimarySchool { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -770,7 +770,7 @@ class PrimarySchool { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -859,7 +859,7 @@ class PrimarySchool { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -878,7 +878,7 @@ class PrimarySchool { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -928,7 +928,7 @@ class PrimarySchool { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/RealEstate.php b/lib/Config/PopulatorData/Templates/RealEstate.php index 8b4d17b677..7178f4dd3d 100644 --- a/lib/Config/PopulatorData/Templates/RealEstate.php +++ b/lib/Config/PopulatorData/Templates/RealEstate.php @@ -38,7 +38,7 @@ class RealEstate { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -56,7 +56,7 @@ class RealEstate { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -74,7 +74,7 @@ class RealEstate { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -103,7 +103,7 @@ class RealEstate { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -140,7 +140,7 @@ class RealEstate { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -222,7 +222,7 @@ class RealEstate { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -240,7 +240,7 @@ class RealEstate { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -296,7 +296,7 @@ class RealEstate { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -314,7 +314,7 @@ class RealEstate { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -382,7 +382,7 @@ class RealEstate { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -400,7 +400,7 @@ class RealEstate { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -442,7 +442,7 @@ class RealEstate { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -484,7 +484,7 @@ class RealEstate { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -528,7 +528,7 @@ class RealEstate { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -546,7 +546,7 @@ class RealEstate { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -595,7 +595,7 @@ class RealEstate { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -613,7 +613,7 @@ class RealEstate { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -677,7 +677,7 @@ class RealEstate { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -695,7 +695,7 @@ class RealEstate { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/RenewableEnergy.php b/lib/Config/PopulatorData/Templates/RenewableEnergy.php index 724e51a6b8..a1a1ebd005 100644 --- a/lib/Config/PopulatorData/Templates/RenewableEnergy.php +++ b/lib/Config/PopulatorData/Templates/RenewableEnergy.php @@ -36,7 +36,7 @@ class RenewableEnergy { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -55,7 +55,7 @@ class RenewableEnergy { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -74,7 +74,7 @@ class RenewableEnergy { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -133,7 +133,7 @@ class RenewableEnergy { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -152,7 +152,7 @@ class RenewableEnergy { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -202,7 +202,7 @@ class RenewableEnergy { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -235,7 +235,7 @@ class RenewableEnergy { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -327,7 +327,7 @@ class RenewableEnergy { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -404,7 +404,7 @@ class RenewableEnergy { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -423,7 +423,7 @@ class RenewableEnergy { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -464,7 +464,7 @@ class RenewableEnergy { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -483,7 +483,7 @@ class RenewableEnergy { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -550,7 +550,7 @@ class RenewableEnergy { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -617,7 +617,7 @@ class RenewableEnergy { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -686,7 +686,7 @@ class RenewableEnergy { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -705,7 +705,7 @@ class RenewableEnergy { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -740,7 +740,7 @@ class RenewableEnergy { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -759,7 +759,7 @@ class RenewableEnergy { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -797,7 +797,7 @@ class RenewableEnergy { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -873,7 +873,7 @@ class RenewableEnergy { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -892,7 +892,7 @@ class RenewableEnergy { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/Retro.php b/lib/Config/PopulatorData/Templates/Retro.php index c79b4df6f4..cf09272246 100644 --- a/lib/Config/PopulatorData/Templates/Retro.php +++ b/lib/Config/PopulatorData/Templates/Retro.php @@ -38,7 +38,7 @@ class Retro { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -56,7 +56,7 @@ class Retro { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -74,7 +74,7 @@ class Retro { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -113,7 +113,7 @@ class Retro { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -131,7 +131,7 @@ class Retro { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -198,7 +198,7 @@ class Retro { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -216,7 +216,7 @@ class Retro { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -253,7 +253,7 @@ class Retro { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -305,7 +305,7 @@ class Retro { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -323,7 +323,7 @@ class Retro { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -357,7 +357,7 @@ class Retro { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -375,7 +375,7 @@ class Retro { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -412,7 +412,7 @@ class Retro { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -464,7 +464,7 @@ class Retro { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -482,7 +482,7 @@ class Retro { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -516,7 +516,7 @@ class Retro { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -534,7 +534,7 @@ class Retro { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -571,7 +571,7 @@ class Retro { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -623,7 +623,7 @@ class Retro { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -641,7 +641,7 @@ class Retro { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -693,7 +693,7 @@ class Retro { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -746,7 +746,7 @@ class Retro { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -764,7 +764,7 @@ class Retro { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -798,7 +798,7 @@ class Retro { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -816,7 +816,7 @@ class Retro { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -860,7 +860,7 @@ class Retro { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -930,7 +930,7 @@ class Retro { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -948,7 +948,7 @@ class Retro { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/RockBand.php b/lib/Config/PopulatorData/Templates/RockBand.php index 43f9b1aeb8..ed02a028f6 100644 --- a/lib/Config/PopulatorData/Templates/RockBand.php +++ b/lib/Config/PopulatorData/Templates/RockBand.php @@ -35,7 +35,7 @@ class RockBand { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -54,7 +54,7 @@ class RockBand { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -73,7 +73,7 @@ class RockBand { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -127,7 +127,7 @@ class RockBand { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -243,7 +243,7 @@ class RockBand { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -262,7 +262,7 @@ class RockBand { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -342,7 +342,7 @@ class RockBand { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -361,7 +361,7 @@ class RockBand { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -402,7 +402,7 @@ class RockBand { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -421,7 +421,7 @@ class RockBand { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -488,7 +488,7 @@ class RockBand { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -555,7 +555,7 @@ class RockBand { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -624,7 +624,7 @@ class RockBand { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -643,7 +643,7 @@ class RockBand { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -697,7 +697,7 @@ class RockBand { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -730,7 +730,7 @@ class RockBand { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -787,7 +787,7 @@ class RockBand { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -806,7 +806,7 @@ class RockBand { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/RssSimpleNews.php b/lib/Config/PopulatorData/Templates/RssSimpleNews.php index 498e3abd17..9a97ccbe01 100644 --- a/lib/Config/PopulatorData/Templates/RssSimpleNews.php +++ b/lib/Config/PopulatorData/Templates/RssSimpleNews.php @@ -35,7 +35,7 @@ class RssSimpleNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -53,7 +53,7 @@ class RssSimpleNews { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -71,7 +71,7 @@ class RssSimpleNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -105,7 +105,7 @@ class RssSimpleNews { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -123,7 +123,7 @@ class RssSimpleNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -160,7 +160,7 @@ class RssSimpleNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -192,7 +192,7 @@ class RssSimpleNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -264,7 +264,7 @@ class RssSimpleNews { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -282,7 +282,7 @@ class RssSimpleNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -402,7 +402,7 @@ class RssSimpleNews { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -420,7 +420,7 @@ class RssSimpleNews { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/ScienceWeekly.php b/lib/Config/PopulatorData/Templates/ScienceWeekly.php index acf5f267cc..836d85f3ff 100644 --- a/lib/Config/PopulatorData/Templates/ScienceWeekly.php +++ b/lib/Config/PopulatorData/Templates/ScienceWeekly.php @@ -31,7 +31,7 @@ class ScienceWeekly { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -49,7 +49,7 @@ class ScienceWeekly { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -67,7 +67,7 @@ class ScienceWeekly { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -123,7 +123,7 @@ class ScienceWeekly { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -141,7 +141,7 @@ class ScienceWeekly { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -248,7 +248,7 @@ class ScienceWeekly { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -266,7 +266,7 @@ class ScienceWeekly { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -329,7 +329,7 @@ class ScienceWeekly { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -347,7 +347,7 @@ class ScienceWeekly { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -386,7 +386,7 @@ class ScienceWeekly { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -404,7 +404,7 @@ class ScienceWeekly { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -469,7 +469,7 @@ class ScienceWeekly { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -508,7 +508,7 @@ class ScienceWeekly { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -526,7 +526,7 @@ class ScienceWeekly { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -565,7 +565,7 @@ class ScienceWeekly { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -583,7 +583,7 @@ class ScienceWeekly { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -634,7 +634,7 @@ class ScienceWeekly { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -652,7 +652,7 @@ class ScienceWeekly { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -707,7 +707,7 @@ class ScienceWeekly { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -725,7 +725,7 @@ class ScienceWeekly { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1008,7 +1008,7 @@ class ScienceWeekly { array ( 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/Software.php b/lib/Config/PopulatorData/Templates/Software.php index db02ea7927..00edf01b93 100644 --- a/lib/Config/PopulatorData/Templates/Software.php +++ b/lib/Config/PopulatorData/Templates/Software.php @@ -36,7 +36,7 @@ class Software { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -55,7 +55,7 @@ class Software { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -74,7 +74,7 @@ class Software { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -109,7 +109,7 @@ class Software { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -128,7 +128,7 @@ class Software { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -166,7 +166,7 @@ class Software { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -213,7 +213,7 @@ class Software { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -232,7 +232,7 @@ class Software { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -301,7 +301,7 @@ class Software { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -320,7 +320,7 @@ class Software { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -355,7 +355,7 @@ class Software { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -374,7 +374,7 @@ class Software { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -437,7 +437,7 @@ class Software { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -477,7 +477,7 @@ class Software { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -496,7 +496,7 @@ class Software { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -531,7 +531,7 @@ class Software { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -550,7 +550,7 @@ class Software { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -588,7 +588,7 @@ class Software { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -653,7 +653,7 @@ class Software { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -672,7 +672,7 @@ class Software { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -707,7 +707,7 @@ class Software { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -726,7 +726,7 @@ class Software { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -803,7 +803,7 @@ class Software { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -822,7 +822,7 @@ class Software { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/Synagogue.php b/lib/Config/PopulatorData/Templates/Synagogue.php index 5a874d8739..6b83fad64f 100644 --- a/lib/Config/PopulatorData/Templates/Synagogue.php +++ b/lib/Config/PopulatorData/Templates/Synagogue.php @@ -35,7 +35,7 @@ class Synagogue { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -54,7 +54,7 @@ class Synagogue { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -73,7 +73,7 @@ class Synagogue { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -132,7 +132,7 @@ class Synagogue { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -151,7 +151,7 @@ class Synagogue { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -201,7 +201,7 @@ class Synagogue { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -220,7 +220,7 @@ class Synagogue { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -258,7 +258,7 @@ class Synagogue { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -357,7 +357,7 @@ class Synagogue { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -390,7 +390,7 @@ class Synagogue { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -505,7 +505,7 @@ class Synagogue { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -585,7 +585,7 @@ class Synagogue { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -642,7 +642,7 @@ class Synagogue { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -661,7 +661,7 @@ class Synagogue { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -699,7 +699,7 @@ class Synagogue { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -718,7 +718,7 @@ class Synagogue { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -759,7 +759,7 @@ class Synagogue { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -778,7 +778,7 @@ class Synagogue { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -846,7 +846,7 @@ class Synagogue { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -914,7 +914,7 @@ class Synagogue { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -984,7 +984,7 @@ class Synagogue { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1003,7 +1003,7 @@ class Synagogue { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1038,7 +1038,7 @@ class Synagogue { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1057,7 +1057,7 @@ class Synagogue { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1092,7 +1092,7 @@ class Synagogue { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1111,7 +1111,7 @@ class Synagogue { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1209,7 +1209,7 @@ class Synagogue { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1228,7 +1228,7 @@ class Synagogue { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1263,7 +1263,7 @@ class Synagogue { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1282,7 +1282,7 @@ class Synagogue { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1320,7 +1320,7 @@ class Synagogue { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1379,7 +1379,7 @@ class Synagogue { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1398,7 +1398,7 @@ class Synagogue { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/Vlogger.php b/lib/Config/PopulatorData/Templates/Vlogger.php index 33850496f2..b1c07ef06d 100644 --- a/lib/Config/PopulatorData/Templates/Vlogger.php +++ b/lib/Config/PopulatorData/Templates/Vlogger.php @@ -35,7 +35,7 @@ class Vlogger { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -54,7 +54,7 @@ class Vlogger { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -73,7 +73,7 @@ class Vlogger { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -163,7 +163,7 @@ class Vlogger { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -215,7 +215,7 @@ class Vlogger { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -234,7 +234,7 @@ class Vlogger { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -274,7 +274,7 @@ class Vlogger { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -293,7 +293,7 @@ class Vlogger { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -347,7 +347,7 @@ class Vlogger { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -418,7 +418,7 @@ class Vlogger { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -437,7 +437,7 @@ class Vlogger { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -492,7 +492,7 @@ class Vlogger { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -547,7 +547,7 @@ class Vlogger { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -604,7 +604,7 @@ class Vlogger { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -623,7 +623,7 @@ class Vlogger { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -689,7 +689,7 @@ class Vlogger { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -764,7 +764,7 @@ class Vlogger { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -799,7 +799,7 @@ class Vlogger { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -818,7 +818,7 @@ class Vlogger { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -914,7 +914,7 @@ class Vlogger { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -933,7 +933,7 @@ class Vlogger { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -971,7 +971,7 @@ class Vlogger { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/WideStoryLayout.php b/lib/Config/PopulatorData/Templates/WideStoryLayout.php index 8c4293975c..2865c7c9c9 100644 --- a/lib/Config/PopulatorData/Templates/WideStoryLayout.php +++ b/lib/Config/PopulatorData/Templates/WideStoryLayout.php @@ -35,7 +35,7 @@ class WideStoryLayout { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -53,7 +53,7 @@ class WideStoryLayout { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -71,7 +71,7 @@ class WideStoryLayout { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -207,7 +207,7 @@ class WideStoryLayout { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -225,7 +225,7 @@ class WideStoryLayout { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -264,7 +264,7 @@ class WideStoryLayout { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -282,7 +282,7 @@ class WideStoryLayout { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -596,7 +596,7 @@ class WideStoryLayout { array ( 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/WineCity.php b/lib/Config/PopulatorData/Templates/WineCity.php index e45ea9ccae..81f80e2eab 100644 --- a/lib/Config/PopulatorData/Templates/WineCity.php +++ b/lib/Config/PopulatorData/Templates/WineCity.php @@ -35,7 +35,7 @@ class WineCity { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -53,7 +53,7 @@ class WineCity { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -71,7 +71,7 @@ class WineCity { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -120,7 +120,7 @@ class WineCity { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -192,7 +192,7 @@ class WineCity { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -210,7 +210,7 @@ class WineCity { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -247,7 +247,7 @@ class WineCity { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -265,7 +265,7 @@ class WineCity { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -290,7 +290,7 @@ class WineCity { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -315,7 +315,7 @@ class WineCity { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -360,7 +360,7 @@ class WineCity { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -411,7 +411,7 @@ class WineCity { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -429,7 +429,7 @@ class WineCity { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -544,7 +544,7 @@ class WineCity { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -562,7 +562,7 @@ class WineCity { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Config/PopulatorData/Templates/WordPressTheme.php b/lib/Config/PopulatorData/Templates/WordPressTheme.php index d9882e22bb..562cec91c0 100755 --- a/lib/Config/PopulatorData/Templates/WordPressTheme.php +++ b/lib/Config/PopulatorData/Templates/WordPressTheme.php @@ -36,7 +36,7 @@ class WordPressTheme { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -55,7 +55,7 @@ class WordPressTheme { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -74,7 +74,7 @@ class WordPressTheme { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -133,7 +133,7 @@ class WordPressTheme { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -152,7 +152,7 @@ class WordPressTheme { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -187,7 +187,7 @@ class WordPressTheme { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -206,7 +206,7 @@ class WordPressTheme { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -244,7 +244,7 @@ class WordPressTheme { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -346,7 +346,7 @@ class WordPressTheme { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -445,7 +445,7 @@ class WordPressTheme { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -464,7 +464,7 @@ class WordPressTheme { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -534,7 +534,7 @@ class WordPressTheme { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -553,7 +553,7 @@ class WordPressTheme { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -592,7 +592,7 @@ class WordPressTheme { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -632,7 +632,7 @@ class WordPressTheme { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -651,7 +651,7 @@ class WordPressTheme { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -686,7 +686,7 @@ class WordPressTheme { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -705,7 +705,7 @@ class WordPressTheme { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -746,7 +746,7 @@ class WordPressTheme { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -765,7 +765,7 @@ class WordPressTheme { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -792,7 +792,7 @@ class WordPressTheme { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -819,7 +819,7 @@ class WordPressTheme { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -848,7 +848,7 @@ class WordPressTheme { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -867,7 +867,7 @@ class WordPressTheme { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -902,7 +902,7 @@ class WordPressTheme { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -921,7 +921,7 @@ class WordPressTheme { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -956,7 +956,7 @@ class WordPressTheme { 'orientation' => 'horizontal', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -975,7 +975,7 @@ class WordPressTheme { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => @@ -1013,7 +1013,7 @@ class WordPressTheme { 'orientation' => 'vertical', 'image' => array ( - 'src' => NULL, + 'src' => null, 'display' => 'scale', ), 'styles' => diff --git a/lib/Cron/Triggers/WordPress.php b/lib/Cron/Triggers/WordPress.php index 0885b66e57..c975a5b96c 100644 --- a/lib/Cron/Triggers/WordPress.php +++ b/lib/Cron/Triggers/WordPress.php @@ -39,17 +39,17 @@ class WordPress { $migration_due_tasks = self::getTasksCount([ 'type' => MigrationWorker::TASK_TYPE, 'scheduled_in' => [self::SCHEDULED_IN_THE_PAST], - 'status' => ['null', ScheduledTask::STATUS_SCHEDULED] + 'status' => ['null', ScheduledTask::STATUS_SCHEDULED], ]); $migration_completed_tasks = self::getTasksCount([ 'type' => MigrationWorker::TASK_TYPE, 'scheduled_in' => [self::SCHEDULED_IN_THE_PAST, self::SCHEDULED_IN_THE_FUTURE], - 'status' => [ScheduledTask::STATUS_COMPLETED] + 'status' => [ScheduledTask::STATUS_COMPLETED], ]); $migration_future_tasks = self::getTasksCount([ 'type' => MigrationWorker::TASK_TYPE, 'scheduled_in' => [self::SCHEDULED_IN_THE_FUTURE], - 'status' => [ScheduledTask::STATUS_SCHEDULED] + 'status' => [ScheduledTask::STATUS_SCHEDULED], ]); // sending queue $scheduled_queues = SchedulerWorker::getScheduledQueues(); @@ -62,53 +62,53 @@ class WordPress { $bounce_due_tasks = self::getTasksCount([ 'type' => BounceWorker::TASK_TYPE, 'scheduled_in' => [self::SCHEDULED_IN_THE_PAST], - 'status' => ['null', ScheduledTask::STATUS_SCHEDULED] + 'status' => ['null', ScheduledTask::STATUS_SCHEDULED], ]); $bounce_future_tasks = self::getTasksCount([ 'type' => BounceWorker::TASK_TYPE, 'scheduled_in' => [self::SCHEDULED_IN_THE_FUTURE], - 'status' => [ScheduledTask::STATUS_SCHEDULED] + 'status' => [ScheduledTask::STATUS_SCHEDULED], ]); // sending service key check $msskeycheck_due_tasks = self::getTasksCount([ 'type' => SendingServiceKeyCheckWorker::TASK_TYPE, 'scheduled_in' => [self::SCHEDULED_IN_THE_PAST], - 'status' => ['null', ScheduledTask::STATUS_SCHEDULED] + 'status' => ['null', ScheduledTask::STATUS_SCHEDULED], ]); $msskeycheck_future_tasks = self::getTasksCount([ 'type' => SendingServiceKeyCheckWorker::TASK_TYPE, 'scheduled_in' => [self::SCHEDULED_IN_THE_FUTURE], - 'status' => [ScheduledTask::STATUS_SCHEDULED] + 'status' => [ScheduledTask::STATUS_SCHEDULED], ]); // premium key check $premium_key_specified = Bridge::isPremiumKeySpecified(); $premium_keycheck_due_tasks = self::getTasksCount([ 'type' => PremiumKeyCheckWorker::TASK_TYPE, 'scheduled_in' => [self::SCHEDULED_IN_THE_PAST], - 'status' => ['null', ScheduledTask::STATUS_SCHEDULED] + 'status' => ['null', ScheduledTask::STATUS_SCHEDULED], ]); $premium_keycheck_future_tasks = self::getTasksCount([ 'type' => PremiumKeyCheckWorker::TASK_TYPE, 'scheduled_in' => [self::SCHEDULED_IN_THE_FUTURE], - 'status' => [ScheduledTask::STATUS_SCHEDULED] + 'status' => [ScheduledTask::STATUS_SCHEDULED], ]); // stats notifications $stats_notifications_tasks = self::getTasksCount([ 'type' => StatsNotificationsWorker::TASK_TYPE, 'scheduled_in' => [self::SCHEDULED_IN_THE_PAST], - 'status' => ['null', ScheduledTask::STATUS_SCHEDULED] + 'status' => ['null', ScheduledTask::STATUS_SCHEDULED], ]); // inactive subscribers check $inactive_subscribers_tasks = self::getTasksCount([ 'type' => InactiveSubscribers::TASK_TYPE, 'scheduled_in' => [self::SCHEDULED_IN_THE_PAST], - 'status' => ['null', ScheduledTask::STATUS_SCHEDULED] + 'status' => ['null', ScheduledTask::STATUS_SCHEDULED], ]); // WooCommerce sync $woo_commerce_sync_tasks = self::getTasksCount([ 'type' => WooCommerceSyncWorker::TASK_TYPE, 'scheduled_in' => [self::SCHEDULED_IN_THE_PAST], - 'status' => ['null', ScheduledTask::STATUS_SCHEDULED] + 'status' => ['null', ScheduledTask::STATUS_SCHEDULED], ]); // check requirements for each worker diff --git a/lib/DI/ContainerConfigurator.php b/lib/DI/ContainerConfigurator.php index d135e61d65..69cceab83f 100644 --- a/lib/DI/ContainerConfigurator.php +++ b/lib/DI/ContainerConfigurator.php @@ -26,7 +26,7 @@ class ContainerConfigurator implements IContainerConfigurator { ->setPublic(true) ->setFactory([ ContainerWrapper::class, - 'getInstance' + 'getInstance', ]); // Analytics $container->autowire(\MailPoet\Analytics\Reporter::class)->setPublic(true); diff --git a/lib/Listing/Handler.php b/lib/Listing/Handler.php index 9e29d559d2..e845fc8884 100644 --- a/lib/Listing/Handler.php +++ b/lib/Listing/Handler.php @@ -153,7 +153,7 @@ class Handler { // filters 'filter' => (isset($data['filter']) ? $data['filter'] : null), // selection - 'selection' => (isset($data['selection']) ? $data['selection'] : null) + 'selection' => (isset($data['selection']) ? $data['selection'] : null), ]; return $data; diff --git a/lib/Mailer/Mailer.php b/lib/Mailer/Mailer.php index 64b636e02f..c082be674f 100644 --- a/lib/Mailer/Mailer.php +++ b/lib/Mailer/Mailer.php @@ -189,7 +189,7 @@ class Mailer { static function formatMailerSendSuccessResult() { return [ - 'response' => true + 'response' => true, ]; } } diff --git a/lib/Settings/SettingsController.php b/lib/Settings/SettingsController.php index bebef47ba0..1c77af2a85 100644 --- a/lib/Settings/SettingsController.php +++ b/lib/Settings/SettingsController.php @@ -52,15 +52,15 @@ class SettingsController { ) ), CronTrigger::SETTING_NAME => [ - 'method' => CronTrigger::DEFAULT_METHOD + 'method' => CronTrigger::DEFAULT_METHOD, ], 'signup_confirmation' => [ 'enabled' => true, 'subject' => sprintf(__('Confirm your subscription to %1$s', 'mailpoet'), WPFunctions::get()->getOption('blogname')), - 'body' => WPFunctions::get()->__("Hello,\n\nWelcome to our newsletter!\n\nPlease confirm your subscription to the list(s): [lists_to_confirm] by clicking the link below: \n\n[activation_link]Click here to confirm your subscription.[/activation_link]\n\nThank you,\n\nThe Team", 'mailpoet') + 'body' => WPFunctions::get()->__("Hello,\n\nWelcome to our newsletter!\n\nPlease confirm your subscription to the list(s): [lists_to_confirm] by clicking the link below: \n\n[activation_link]Click here to confirm your subscription.[/activation_link]\n\nThank you,\n\nThe Team", 'mailpoet'), ], 'tracking' => [ - 'enabled' => true + 'enabled' => true, ], 'analytics' => [ 'enabled' => false, diff --git a/lib/Settings/UserFlagsController.php b/lib/Settings/UserFlagsController.php index 06ba7ffa34..3c1093461a 100644 --- a/lib/Settings/UserFlagsController.php +++ b/lib/Settings/UserFlagsController.php @@ -41,7 +41,7 @@ class UserFlagsController { UserFlag::createOrUpdate([ 'user_id' => $current_user_id, 'name' => $name, - 'value' => $value + 'value' => $value, ]); if ($this->isLoaded()) { $this->data[$name] = $value; diff --git a/lib/Subscribers/ImportExport/Export/Export.php b/lib/Subscribers/ImportExport/Export/Export.php index e32a3c0d9d..b542988e86 100644 --- a/lib/Subscribers/ImportExport/Export/Export.php +++ b/lib/Subscribers/ImportExport/Export/Export.php @@ -70,7 +70,7 @@ class Export { } $callback = [ $this, - 'generate' . strtoupper($this->export_format_option) + 'generate' . strtoupper($this->export_format_option), ]; if (is_callable($callback)) { $processed_subscribers = call_user_func($callback); diff --git a/lib/Util/Sudzy/Engine.php b/lib/Util/Sudzy/Engine.php index f330a64aeb..718ad4136d 100644 --- a/lib/Util/Sudzy/Engine.php +++ b/lib/Util/Sudzy/Engine.php @@ -10,99 +10,86 @@ class Engine /** * Validation methods are stored here so they can easily be overwritten */ - protected $_checks; + protected $_checks; - public function __construct() - { - $this->_checks = array( - 'required' => array($this, '_required'), - 'minLength' => array($this, '_minLength'), - 'maxLength' => array($this, '_maxLength'), - 'isEmail' => array($this, '_isEmail'), - 'isInteger' => array($this, '_isInteger'), - 'isNumeric' => array($this, '_isNumeric') - ); - } - - public function __call($name, $args) - { - if (!isset($this->_checks[$name])) - throw new \InvalidArgumentException("{$name} is not a valid validation function."); - - $val = array_shift($args); - $args = array_shift($args); - - return call_user_func($this->_checks[$name], $val, $args); - } - - public function executeOne($check, $val, $params=array()) - { - $callback = __NAMESPACE__ .'\Engine::'.$check; - if (is_callable($callback)) { - return call_user_func($callback, $val, $params); - } + public function __construct() { + $this->_checks = array( + 'required' => array($this, '_required'), + 'minLength' => array($this, '_minLength'), + 'maxLength' => array($this, '_maxLength'), + 'isEmail' => array($this, '_isEmail'), + 'isInteger' => array($this, '_isInteger'), + 'isNumeric' => array($this, '_isNumeric') + ); + } + + public function __call($name, $args) { + if (!isset($this->_checks[$name])) + throw new \InvalidArgumentException("{$name} is not a valid validation function."); + + $val = array_shift($args); + $args = array_shift($args); + + return call_user_func($this->_checks[$name], $val, $args); + } + + public function executeOne($check, $val, $params=array()) { + $callback = __NAMESPACE__ .'\Engine::'.$check; + if (is_callable($callback)) { + return call_user_func($callback, $val, $params); } + } /** * @param string $label label used to call function * @param Callable $function function with params (value, additional params as array) * @throws \Exception */ - public function addValidator($label, $function) - { - if (isset($this->_checks[$label])) throw new \Exception(); - $this->setValidator($label, $function); - } + public function addValidator($label, $function) { + if (isset($this->_checks[$label])) throw new \Exception(); + $this->setValidator($label, $function); + } - public function setValidator($label, $function) - { - $this->_checks[$label] = $function; - } + public function setValidator($label, $function) { + $this->_checks[$label] = $function; + } - public function removeValidator($label) - { - unset($this->_checks[$label]); - } + public function removeValidator($label) { + unset($this->_checks[$label]); + } /** * @return array The list of usable validator methods */ - public function getValidators() - { - return array_keys($this->_checks); - } + public function getValidators() { + return array_keys($this->_checks); + } ///// Validator methods - protected function _isEmail($val, $params) - { - return FALSE !== filter_var($val, FILTER_VALIDATE_EMAIL); - } + protected function _isEmail($val, $params) { + return false !== filter_var($val, FILTER_VALIDATE_EMAIL); + } - protected function _isInteger($val, $params) - { - if (!is_numeric($val)) return false; - return intval($val) == $val; - } + protected function _isInteger($val, $params) { + if (!is_numeric($val)) return false; + return intval($val) == $val; + } - protected function _isNumeric($val, $params) - { - return is_numeric($val); - } + protected function _isNumeric($val, $params) { + return is_numeric($val); + } - protected function _minLength($val, $params) - { - $len = array_shift($params); - return strlen($val) >= $len; - } + protected function _minLength($val, $params) { + $len = array_shift($params); + return strlen($val) >= $len; + } - protected function _maxLength($val, $params) - { - $len = array_shift($params); - return strlen($val) <= $len; - } + protected function _maxLength($val, $params) { + $len = array_shift($params); + return strlen($val) <= $len; + } - protected function _required($val, $params=array()) - { - return !(($val === null) || ('' === trim($val))); - } + protected function _required($val, $params=array()) { + return !(($val === null) || ('' === trim($val))); + } } diff --git a/lib/Util/Sudzy/ValidationException.php b/lib/Util/Sudzy/ValidationException.php index 0389618e30..d11932ce88 100644 --- a/lib/Util/Sudzy/ValidationException.php +++ b/lib/Util/Sudzy/ValidationException.php @@ -4,16 +4,14 @@ namespace Sudzy; class ValidationException extends \Exception { - protected $_validationErrors; + protected $_validationErrors; - public function __construct($errs) - { - $this->_validationErrors = $errs; - parent::__construct(implode("\n", $errs)); - } + public function __construct($errs) { + $this->_validationErrors = $errs; + parent::__construct(implode("\n", $errs)); + } - public function getValidationErrors() - { - return $this->_validationErrors; - } + public function getValidationErrors() { + return $this->_validationErrors; + } } diff --git a/lib/Util/XLSXWriter.php b/lib/Util/XLSXWriter.php index b1964e0ae2..89aab985cc 100644 --- a/lib/Util/XLSXWriter.php +++ b/lib/Util/XLSXWriter.php @@ -6,7 +6,8 @@ namespace MailPoet\Util; * @license MIT License * */ -if (!class_exists('ZipArchive')) { throw new \Exception('ZipArchive not found'); } +if (!class_exists('ZipArchive')) { throw new \Exception('ZipArchive not found'); +} class XLSXWriter { @@ -23,8 +24,7 @@ class XLSXWriter protected $current_sheet = ''; public $rtl = false; - public function __construct() - { + public function __construct() { if (!ini_get('date.timezone')) { //using date functions can kick out warning if this isn't set @@ -32,10 +32,11 @@ class XLSXWriter } } - public function setAuthor($author='') { $this->author=$author; } + public function setAuthor($author='') { + $this->author=$author; + } - public function __destruct() - { + public function __destruct() { if (!empty($this->temp_files)) { foreach ($this->temp_files as $temp_file) { @unlink($temp_file); @@ -43,41 +44,41 @@ class XLSXWriter } } - protected function tempFilename() - { + protected function tempFilename() { $filename = tempnam(sys_get_temp_dir(), "xlsx_writer_"); $this->temp_files[] = $filename; return $filename; } - public function writeToStdOut() - { + public function writeToStdOut() { $temp_file = $this->tempFilename(); self::writeToFile($temp_file); readfile($temp_file); } - public function writeToString() - { + public function writeToString() { $temp_file = $this->tempFilename(); self::writeToFile($temp_file); $string = file_get_contents($temp_file); return $string; } - public function writeToFile($filename) - { + public function writeToFile($filename) { foreach ($this->sheets as $sheet_name => $sheet) { self::finalizeSheet($sheet_name);//making sure all footers have been written } @unlink($filename);//if the zip already exists, overwrite it $zip = new \ZipArchive(); - if (empty($this->sheets)) { self::log("Error in ".__CLASS__."::".__FUNCTION__.", no worksheets defined."); return; } - if (!$zip->open($filename, \ZipArchive::CREATE)) { self::log("Error in ".__CLASS__."::".__FUNCTION__.", unable to create zip."); return; } + if (empty($this->sheets)) { self::log("Error in ".__CLASS__."::".__FUNCTION__.", no worksheets defined."); + return; + } + if (!$zip->open($filename, \ZipArchive::CREATE)) { self::log("Error in ".__CLASS__."::".__FUNCTION__.", unable to create zip."); + return; + } $zip->addEmptyDir("docProps/"); - $zip->addFromString("docProps/app.xml" , self::buildAppXML() ); + $zip->addFromString("docProps/app.xml", self::buildAppXML() ); $zip->addFromString("docProps/core.xml", self::buildCoreXML()); $zip->addEmptyDir("_rels/"); @@ -90,17 +91,16 @@ class XLSXWriter if (!empty($this->shared_strings)) { $zip->addFile($this->writeSharedStringsXML(), "xl/sharedStrings.xml" ); //$zip->addFromString("xl/sharedStrings.xml", self::buildSharedStringsXML() ); } - $zip->addFromString("xl/workbook.xml" , self::buildWorkbookXML() ); + $zip->addFromString("xl/workbook.xml", self::buildWorkbookXML() ); $zip->addFile($this->writeStylesXML(), "xl/styles.xml" ); //$zip->addFromString("xl/styles.xml" , self::buildStylesXML() ); - $zip->addFromString("[Content_Types].xml" , self::buildContentTypesXML() ); + $zip->addFromString("[Content_Types].xml", self::buildContentTypesXML() ); $zip->addEmptyDir("xl/_rels/"); $zip->addFromString("xl/_rels/workbook.xml.rels", self::buildWorkbookRelsXML() ); $zip->close(); } - protected function initializeSheet($sheet_name) - { + protected function initializeSheet($sheet_name) { //if already initialized if ($this->current_sheet==$sheet_name || isset($this->sheets[$sheet_name])) return; @@ -140,8 +140,7 @@ class XLSXWriter $sheet->file_writer->write( ''); } - public function writeSheetHeader($sheet_name, array $header_types) - { + public function writeSheetHeader($sheet_name, array $header_types) { if (empty($sheet_name) || empty($header_types) || !empty($this->sheets[$sheet_name])) return; @@ -159,8 +158,7 @@ class XLSXWriter $this->current_sheet = $sheet_name; } - public function writeSheetRow($sheet_name, array $row) - { + public function writeSheetRow($sheet_name, array $row) { if (empty($sheet_name) || empty($row)) return; @@ -180,8 +178,7 @@ class XLSXWriter $this->current_sheet = $sheet_name; } - protected function finalizeSheet($sheet_name) - { + protected function finalizeSheet($sheet_name) { if (empty($sheet_name) || $this->sheets[$sheet_name]->finalized) return; @@ -206,23 +203,21 @@ class XLSXWriter $sheet->finalized=true; } - public function writeSheet(array $data, $sheet_name='', array $header_types=array() ) - { + public function writeSheet(array $data, $sheet_name='', array $header_types=array() ) { $sheet_name = empty($sheet_name) ? 'Sheet1' : $sheet_name; $data = empty($data) ? array(array('')) : $data; if (!empty($header_types)) { $this->writeSheetHeader($sheet_name, $header_types); } - foreach ($data as $i=>$row) + foreach ($data as $i => $row) { $this->writeSheetRow($sheet_name, $row); } $this->finalizeSheet($sheet_name); } - protected function writeCell(XLSXWriter_BuffererWriter &$file, $row_number, $column_number, $value, $cell_format) - { + protected function writeCell(XLSXWriter_BuffererWriter &$file, $row_number, $column_number, $value, $cell_format) { static $styles = array('money'=>1,'dollar'=>1,'datetime'=>2,'date'=>3,'string'=>0); $cell = self::xlsCell($row_number, $column_number); $s = isset($styles[$cell_format]) ? $styles[$cell_format] : '0'; @@ -244,72 +239,70 @@ class XLSXWriter } } - protected function writeStylesXML() - { + protected function writeStylesXML() { $temporary_filename = $this->tempFilename(); $file = new XLSXWriter_BuffererWriter($temporary_filename); $file->write(''."\n"); $file->write(''); $file->write(''); - $file->write( ''); - $file->write( ''); - $file->write( ''); - $file->write( ''); + $file->write( ''); + $file->write( ''); + $file->write( ''); + $file->write( ''); $file->write(''); $file->write(''); - $file->write( ''); - $file->write( ''); - $file->write( ''); - $file->write( ''); + $file->write( ''); + $file->write( ''); + $file->write( ''); + $file->write( ''); $file->write(''); $file->write(''); $file->write(''); - $file->write( ''); - $file->write( ''); - $file->write( ''); - $file->write( ''); - $file->write( ''); - $file->write( ''); - $file->write( ''); - $file->write( ''); - $file->write( ''); - $file->write( ''); - $file->write( ''); - $file->write( ''); - $file->write( ''); - $file->write( ''); - $file->write( ''); - $file->write( ''); - $file->write( ''); - $file->write( ''); - $file->write( ''); - $file->write( ''); - $file->write( ''); - $file->write( ''); - $file->write( ''); - $file->write( ''); - $file->write( ''); - $file->write( ''); - $file->write( ''); - $file->write( ''); - $file->write( ''); - $file->write( ''); - $file->write( ''); - $file->write( ''); - $file->write( ''); - $file->write( ''); - $file->write( ''); - $file->write( ''); - $file->write( ''); - $file->write( ''); + $file->write( ''); + $file->write( ''); + $file->write( ''); + $file->write( ''); + $file->write( ''); + $file->write( ''); + $file->write( ''); + $file->write( ''); + $file->write( ''); + $file->write( ''); + $file->write( ''); + $file->write( ''); + $file->write( ''); + $file->write( ''); + $file->write( ''); + $file->write( ''); + $file->write( ''); + $file->write( ''); + $file->write( ''); + $file->write( ''); + $file->write( ''); + $file->write( ''); + $file->write( ''); + $file->write( ''); + $file->write( ''); + $file->write( ''); + $file->write( ''); + $file->write( ''); + $file->write( ''); + $file->write( ''); + $file->write( ''); + $file->write( ''); + $file->write( ''); + $file->write( ''); + $file->write( ''); + $file->write( ''); + $file->write( ''); + $file->write( ''); $file->write(''); $file->close(); return $temporary_filename; } - protected function setSharedString($v) - { + protected function setSharedString($v) { if (isset($this->shared_strings[$v])) { $string_value = $this->shared_strings[$v]; @@ -323,13 +316,12 @@ class XLSXWriter return $string_value; } - protected function writeSharedStringsXML() - { + protected function writeSharedStringsXML() { $temporary_filename = $this->tempFilename(); - $file = new XLSXWriter_BuffererWriter($temporary_filename, $fd_flags='w', $check_utf8=true); + $file = new XLSXWriter_BuffererWriter($temporary_filename, $fd_flags = 'w', $check_utf8 = true); $file->write(''."\n"); $file->write(''); - foreach ($this->shared_strings as $s=>$c) + foreach ($this->shared_strings as $s => $c) { $file->write(''.self::xmlspecialchars($s).''); } @@ -339,16 +331,14 @@ class XLSXWriter return $temporary_filename; } - protected function buildAppXML() - { + protected function buildAppXML() { $app_xml=""; $app_xml.=''."\n"; $app_xml.='0'; return $app_xml; } - protected function buildCoreXML() - { + protected function buildCoreXML() { $core_xml=""; $core_xml.=''."\n"; $core_xml.=''; @@ -359,8 +349,7 @@ class XLSXWriter return $core_xml; } - protected function buildRelationshipsXML() - { + protected function buildRelationshipsXML() { $rels_xml=""; $rels_xml.=''."\n"; $rels_xml.=''; @@ -372,8 +361,7 @@ class XLSXWriter return $rels_xml; } - protected function buildWorkbookXML() - { + protected function buildWorkbookXML() { $i=0; $workbook_xml=""; $workbook_xml.=''."\n"; @@ -381,7 +369,7 @@ class XLSXWriter $workbook_xml.=''; $workbook_xml.=''; $workbook_xml.=''; - foreach ($this->sheets as $sheet_name=>$sheet) { + foreach ($this->sheets as $sheet_name => $sheet) { $workbook_xml.=''; $i++; } @@ -390,14 +378,13 @@ class XLSXWriter return $workbook_xml; } - protected function buildWorkbookRelsXML() - { + protected function buildWorkbookRelsXML() { $i=0; $wkbkrels_xml=""; $wkbkrels_xml.=''."\n"; $wkbkrels_xml.=''; $wkbkrels_xml.=''; - foreach ($this->sheets as $sheet_name=>$sheet) { + foreach ($this->sheets as $sheet_name => $sheet) { $wkbkrels_xml.=''; $i++; } @@ -409,14 +396,13 @@ class XLSXWriter return $wkbkrels_xml; } - protected function buildContentTypesXML() - { + protected function buildContentTypesXML() { $content_types_xml=""; $content_types_xml.=''."\n"; $content_types_xml.=''; $content_types_xml.=''; $content_types_xml.=''; - foreach ($this->sheets as $sheet_name=>$sheet) { + foreach ($this->sheets as $sheet_name => $sheet) { $content_types_xml.=''; } if (!empty($this->shared_strings)) { @@ -437,8 +423,7 @@ class XLSXWriter * @param $column_number int, zero based * @return Cell label/coordinates, ex: A1, C3, AA42 * */ - public static function xlsCell($row_number, $column_number) - { + public static function xlsCell($row_number, $column_number) { $n = $column_number; for ($r = ""; $n >= 0; $n = intval($n / 26) - 1) { $r = chr($n%26 + 0x41) . $r; @@ -446,33 +431,30 @@ class XLSXWriter return $r . ($row_number+1); } //------------------------------------------------------------------ - public static function log($string) - { + public static function log($string) { file_put_contents("php://stderr", date("Y-m-d H:i:s:").rtrim(is_array($string) ? json_encode($string) : $string)."\n"); } //------------------------------------------------------------------ - public static function sanitize_filename($filename) //http://msdn.microsoft.com/en-us/library/aa365247%28VS.85%29.aspx - { - $nonprinting = array_map('chr', range(0,31)); + public static function sanitize_filename($filename) { + //http://msdn.microsoft.com/en-us/library/aa365247%28VS.85%29.aspx + $nonprinting = array_map('chr', range(0, 31)); $invalid_chars = array('<', '>', '?', '"', ':', '|', '\\', '/', '*', '&'); - $all_invalids = array_merge($nonprinting,$invalid_chars); + $all_invalids = array_merge($nonprinting, $invalid_chars); return str_replace($all_invalids, "", $filename); } //------------------------------------------------------------------ - public static function xmlspecialchars($val) - { + public static function xmlspecialchars($val) { return str_replace("'", "'", htmlspecialchars($val)); } //------------------------------------------------------------------ - public static function array_first_key(array $arr) - { + public static function array_first_key(array $arr) { reset($arr); $first_key = key($arr); return $first_key; } //------------------------------------------------------------------ - public static function convert_date_time($date_input) //thanks to Excel::Writer::XLSX::Worksheet.pm (perl) - { + public static function convert_date_time($date_input) { + //thanks to Excel::Writer::XLSX::Worksheet.pm (perl) $days = 0; # Number of days since epoch $seconds = 0; # Time expressed as fraction of 24h hours in seconds $year=$month=$day=0; @@ -512,7 +494,7 @@ class XLSXWriter # Some boundary checks if ($year < $epoch || $year > 9999) return 0; if ($month < 1 || $month > 12) return 0; - if ($day < 1 || $day > $mdays[ $month - 1 ]) return 0; + if ($day < 1 || $day > $mdays[$month - 1]) return 0; # Accumulate the number of days since the epoch. $days = $day; # Add days for current month @@ -524,7 +506,8 @@ class XLSXWriter $days -= $leap; # Already counted above # Adjust for Excel erroneously treating 1900 as a leap year. - if ($days > 59) { $days++;} + if ($days > 59) { $days++; + } return $days + $seconds; } @@ -537,8 +520,7 @@ class XLSXWriter_BuffererWriter protected $buffer=''; protected $check_utf8=false; - public function __construct($filename, $fd_fopen_flags='w', $check_utf8=false) - { + public function __construct($filename, $fd_fopen_flags='w', $check_utf8=false) { $this->check_utf8 = $check_utf8; $this->fd = fopen($filename, $fd_fopen_flags); if ($this->fd===false) { @@ -546,16 +528,14 @@ class XLSXWriter_BuffererWriter } } - public function write($string) - { + public function write($string) { $this->buffer.=$string; if (isset($this->buffer[8191])) { $this->purge(); } } - protected function purge() - { + protected function purge() { if ($this->fd) { if ($this->check_utf8 && !self::isValidUTF8($this->buffer)) { XLSXWriter::log("Error, invalid UTF8 encoding detected."); @@ -566,8 +546,7 @@ class XLSXWriter_BuffererWriter } } - public function close() - { + public function close() { $this->purge(); if ($this->fd) { fclose($this->fd); @@ -575,13 +554,11 @@ class XLSXWriter_BuffererWriter } } - public function __destruct() - { + public function __destruct() { $this->close(); } - public function ftell() - { + public function ftell() { if ($this->fd) { $this->purge(); return ftell($this->fd); @@ -589,8 +566,7 @@ class XLSXWriter_BuffererWriter return -1; } - public function fseek($pos) - { + public function fseek($pos) { if ($this->fd) { $this->purge(); return fseek($this->fd, $pos); @@ -598,8 +574,7 @@ class XLSXWriter_BuffererWriter return -1; } - protected static function isValidUTF8($string) - { + protected static function isValidUTF8($string) { if (function_exists('mb_check_encoding')) { return mb_check_encoding($string, 'UTF-8') ? true : false; diff --git a/tasks/code_sniffer/MailPoet/ruleset.xml b/tasks/code_sniffer/MailPoet/ruleset.xml index 92b22b6867..082143d15d 100644 --- a/tasks/code_sniffer/MailPoet/ruleset.xml +++ b/tasks/code_sniffer/MailPoet/ruleset.xml @@ -3,6 +3,8 @@ MailPoet specific rule set + + diff --git a/tests/DataFactories/Newsletter.php b/tests/DataFactories/Newsletter.php index 821eb8b7b2..e3663475a2 100644 --- a/tests/DataFactories/Newsletter.php +++ b/tests/DataFactories/Newsletter.php @@ -138,7 +138,7 @@ class Newsletter { 15 => 'woocommerce_product_purchased', 16 => 'user', // sendTo 19 => 'immediate', // afterTimeType - 20 => json_encode(['option' => $products_option]) + 20 => json_encode(['option' => $products_option]), ]); return $this; } diff --git a/tests/DataFactories/Subscriber.php b/tests/DataFactories/Subscriber.php index eb044ba37e..41caab3dc0 100644 --- a/tests/DataFactories/Subscriber.php +++ b/tests/DataFactories/Subscriber.php @@ -15,7 +15,7 @@ class Subscriber { public function __construct() { $this->data = [ 'email' => bin2hex(random_bytes(7)) . '@example.com', // phpcs:ignore - 'status' => 'subscribed' + 'status' => 'subscribed', ]; $this->segments = []; } diff --git a/tests/DataFactories/WooCommerceProduct.php b/tests/DataFactories/WooCommerceProduct.php index be06d0caf6..184e18b5cf 100644 --- a/tests/DataFactories/WooCommerceProduct.php +++ b/tests/DataFactories/WooCommerceProduct.php @@ -27,7 +27,7 @@ class WooCommerceProduct { 'price' => 10, 'categoryIds' => null, 'tagIds' => null, - 'images' => null + 'images' => null, ]; } diff --git a/tests/_bootstrap.php b/tests/_bootstrap.php index 6fd199e66e..b3d9bbc7f3 100644 --- a/tests/_bootstrap.php +++ b/tests/_bootstrap.php @@ -1 +1 @@ - 1, 'name' => 'Product 1', 'total' => $product_price, - ] + ], ]) ->create(); } diff --git a/tests/integration/API/JSON/v1/NewslettersTest.php b/tests/integration/API/JSON/v1/NewslettersTest.php index e34fa3c871..27bc521c16 100644 --- a/tests/integration/API/JSON/v1/NewslettersTest.php +++ b/tests/integration/API/JSON/v1/NewslettersTest.php @@ -106,7 +106,7 @@ class NewslettersTest extends \MailPoetTest { ->equals('This newsletter does not exist.'); $wp = Stub::make(new WPFunctions, [ - 'applyFilters' => asCallable([WPHooksHelper::class, 'applyFilters']) + 'applyFilters' => asCallable([WPHooksHelper::class, 'applyFilters']), ]); $this->endpoint = new Newsletters( ContainerWrapper::getInstance()->get(BulkActionController::class), @@ -146,7 +146,7 @@ class NewslettersTest extends \MailPoetTest { $wp = Stub::make(new WPFunctions, [ 'applyFilters' => asCallable([WPHooksHelper::class, 'applyFilters']), - 'doAction' => asCallable([WPHooksHelper::class, 'doAction']) + 'doAction' => asCallable([WPHooksHelper::class, 'doAction']), ]); $this->endpoint = new Newsletters( ContainerWrapper::getInstance()->get(BulkActionController::class), @@ -513,7 +513,7 @@ class NewslettersTest extends \MailPoetTest { function testItCanDuplicateANewsletter() { $wp = Stub::make(new WPFunctions, [ - 'doAction' => asCallable([WPHooksHelper::class, 'doAction']) + 'doAction' => asCallable([WPHooksHelper::class, 'doAction']), ]); $this->endpoint = new Newsletters( ContainerWrapper::getInstance()->get(BulkActionController::class), diff --git a/tests/integration/API/JSON/v1/SetupTest.php b/tests/integration/API/JSON/v1/SetupTest.php index 3b81d2bd46..99273ada72 100644 --- a/tests/integration/API/JSON/v1/SetupTest.php +++ b/tests/integration/API/JSON/v1/SetupTest.php @@ -18,7 +18,7 @@ class SetupTest extends \MailPoetTest { function testItCanReinstall() { $wp = Stub::make(new WPFunctions, [ - 'doAction' => asCallable([WPHooksHelper::class, 'doAction']) + 'doAction' => asCallable([WPHooksHelper::class, 'doAction']), ]); $router = new Setup($wp); diff --git a/tests/integration/API/JSON/v1/SubscribersTest.php b/tests/integration/API/JSON/v1/SubscribersTest.php index 574c7f10b3..1ed4644bc9 100644 --- a/tests/integration/API/JSON/v1/SubscribersTest.php +++ b/tests/integration/API/JSON/v1/SubscribersTest.php @@ -495,7 +495,7 @@ class SubscribersTest extends \MailPoetTest { $custom_field = CustomField::createOrUpdate([ 'name' => 'custom field', 'type' => 'text', - 'params' => ['required' => '1'] + 'params' => ['required' => '1'], ]); $form = Form::createOrUpdate([ 'name' => 'form', @@ -645,7 +645,7 @@ class SubscribersTest extends \MailPoetTest { 'last_name' => 'Doe', 'status' => Subscriber::STATUS_SUBSCRIBED, 'segments' => [ - $this->segment_1->id + $this->segment_1->id, ], 'source' => Source::IMPORTED, )); diff --git a/tests/integration/API/MP/APITest.php b/tests/integration/API/MP/APITest.php index ce57afae95..81fa2196fe 100644 --- a/tests/integration/API/MP/APITest.php +++ b/tests/integration/API/MP/APITest.php @@ -396,7 +396,7 @@ class APITest extends \MailPoetTest { CustomField::createOrUpdate([ 'name' => 'custom field', 'type' => 'text', - 'params' => ['required' => '1'] + 'params' => ['required' => '1'], ]); $subscriber = array( @@ -509,7 +509,7 @@ class APITest extends \MailPoetTest { expect($options['send_confirmation_email'])->equals(true); }), 'required_custom_field_validator' => Stub::makeEmpty(RequiredCustomFieldValidator::class, ['validate']), - 'new_subscriber_notification_mailer'=> Stub::makeEmpty(NewSubscriberNotificationMailer::class, ['send']) + 'new_subscriber_notification_mailer'=> Stub::makeEmpty(NewSubscriberNotificationMailer::class, ['send']), ] ); $subscriber = array( diff --git a/tests/integration/Config/AccessControlTest.php b/tests/integration/Config/AccessControlTest.php index 085e14cbfc..5d8e7cc9ba 100644 --- a/tests/integration/Config/AccessControlTest.php +++ b/tests/integration/Config/AccessControlTest.php @@ -99,7 +99,7 @@ class AccessControlTest extends \MailPoetTest { $capability = 'some_capability'; $access_control = new AccessControl(); WPFunctions::set(Stub::make(new WPFunctions, [ - 'currentUserCan' => true + 'currentUserCan' => true, ])); expect($access_control->validatePermission($capability))->true(); diff --git a/tests/integration/Config/CapabilitiesTest.php b/tests/integration/Config/CapabilitiesTest.php index 3e9efb22d0..3a46fefe4b 100644 --- a/tests/integration/Config/CapabilitiesTest.php +++ b/tests/integration/Config/CapabilitiesTest.php @@ -89,7 +89,7 @@ class CapabilitiesTest extends \MailPoetTest { function testItSetsUpMembersCapabilities() { $wp = Stub::make(new WPFunctions, [ - 'addAction' => asCallable([WPHooksHelper::class, 'addAction']) + 'addAction' => asCallable([WPHooksHelper::class, 'addAction']), ]); $this->caps = new Capabilities(new Renderer, $wp); diff --git a/tests/integration/Cron/CronHelperTest.php b/tests/integration/Cron/CronHelperTest.php index 3b749927fd..996e7de85d 100644 --- a/tests/integration/Cron/CronHelperTest.php +++ b/tests/integration/Cron/CronHelperTest.php @@ -25,7 +25,7 @@ class CronHelperTest extends \MailPoetTest { )); $this->settings->set('sender', [ 'name' => 'John Doe', - 'address' => 'john.doe@example.com' + 'address' => 'john.doe@example.com', ]); } @@ -287,7 +287,7 @@ class CronHelperTest extends \MailPoetTest { $wp = Stub::make(new WPFunctions, [ 'wpRemotePost' => function() use (&$wp_remote_get_args) { return $wp_remote_get_args = func_get_args(); - } + }, ]); $wp->addFilter('mailpoet_cron_request_args', $filter); CronHelper::queryCronUrl('test', $wp); diff --git a/tests/integration/Cron/DaemonHttpRunnerTest.php b/tests/integration/Cron/DaemonHttpRunnerTest.php index e702f06a4d..90c532d30b 100644 --- a/tests/integration/Cron/DaemonHttpRunnerTest.php +++ b/tests/integration/Cron/DaemonHttpRunnerTest.php @@ -36,7 +36,7 @@ class DaemonHttpRunnerTest extends \MailPoetTest { [ 'abortWithError' => function($message) { return $message; - } + }, ] ); expect($daemon->run(false))->equals('Invalid or missing request data.'); @@ -48,7 +48,7 @@ class DaemonHttpRunnerTest extends \MailPoetTest { [ 'abortWithError' => function($message) { return $message; - } + }, ] ); $daemon->settings_daemon_data = array( @@ -66,12 +66,12 @@ class DaemonHttpRunnerTest extends \MailPoetTest { 'createScheduleWorker' => $this->makeEmpty(SimpleWorker::class, [ 'process' => function () { throw new \Exception('Message'); - } + }, ]), 'createQueueWorker' => $this->makeEmpty(SimpleWorker::class, [ 'process' => function () { throw new \Exception(); - } + }, ]), ]); @@ -112,7 +112,7 @@ class DaemonHttpRunnerTest extends \MailPoetTest { 'createScheduleWorker' => $this->makeEmpty(SimpleWorker::class, [ 'process' => function () { $this->settings->delete(CronHelper::DAEMON_SETTING); - } + }, ]), ]); $daemon = $this->make(DaemonHttpRunner::class, array( @@ -136,7 +136,7 @@ class DaemonHttpRunnerTest extends \MailPoetTest { CronHelper::DAEMON_SETTING, array('token' => 567) ); - } + }, ]), ]); $daemon = $this->make(DaemonHttpRunner::class, array( @@ -190,12 +190,12 @@ class DaemonHttpRunnerTest extends \MailPoetTest { 'createScheduleWorker' => $this->makeEmpty(SimpleWorker::class, [ 'process' => function () { sleep(2); - } + }, ]), 'createQueueWorker' => $this->makeEmpty(SimpleWorker::class, [ 'process' => function () { throw new \Exception(); - } + }, ]), ]); diff --git a/tests/integration/Cron/Triggers/WordPressTest.php b/tests/integration/Cron/Triggers/WordPressTest.php index ece3b72f62..14261c6b49 100644 --- a/tests/integration/Cron/Triggers/WordPressTest.php +++ b/tests/integration/Cron/Triggers/WordPressTest.php @@ -90,7 +90,7 @@ class WordPressTest extends \MailPoetTest { 'frequency' => array( 'emails' => Setting::DEFAULT_SENDING_FREQUENCY_EMAILS, 'interval' => Setting::DEFAULT_SENDING_FREQUENCY_INTERVAL - ) + ), ]); $this->_addScheduledTask(BounceWorker::TASK_TYPE, $status = ScheduledTask::STATUS_SCHEDULED); expect(WordPress::checkExecutionRequirements())->true(); diff --git a/tests/integration/Cron/Workers/SendingQueue/MigrationTest.php b/tests/integration/Cron/Workers/SendingQueue/MigrationTest.php index f847b0fe73..6caf6d2655 100644 --- a/tests/integration/Cron/Workers/SendingQueue/MigrationTest.php +++ b/tests/integration/Cron/Workers/SendingQueue/MigrationTest.php @@ -119,7 +119,7 @@ class MigrationTest extends \MailPoetTest { // "timestamp" string is passed as an argument expect($time)->equals('timestamp'); return $timestamp; - } + }, ]); $next_run_date = Migration::getNextRunDate($wp); diff --git a/tests/integration/Cron/Workers/SendingQueue/Tasks/NewsletterTest.php b/tests/integration/Cron/Workers/SendingQueue/Tasks/NewsletterTest.php index 3b818110a9..c27ec6540c 100644 --- a/tests/integration/Cron/Workers/SendingQueue/Tasks/NewsletterTest.php +++ b/tests/integration/Cron/Workers/SendingQueue/Tasks/NewsletterTest.php @@ -131,7 +131,7 @@ class NewsletterTest extends \MailPoetTest { function testItHashesLinksAndInsertsTrackingImageWhenTrackingIsEnabled() { $wp = Stub::make(new WPFunctions, [ - 'applyFilters' => asCallable([WPHooksHelper::class, 'applyFilters']) + 'applyFilters' => asCallable([WPHooksHelper::class, 'applyFilters']), ]); $newsletter_task = new NewsletterTask($wp); $newsletter_task->tracking_enabled = true; @@ -153,7 +153,7 @@ class NewsletterTest extends \MailPoetTest { function testItDoesNotHashLinksAndInsertTrackingCodeWhenTrackingIsDisabled() { $wp = Stub::make(new WPFunctions, [ - 'applyFilters' => asCallable([WPHooksHelper::class, 'applyFilters']) + 'applyFilters' => asCallable([WPHooksHelper::class, 'applyFilters']), ]); $newsletter_task = new NewsletterTask($wp); $newsletter_task->tracking_enabled = false; @@ -194,7 +194,7 @@ class NewsletterTest extends \MailPoetTest { $this->newsletter->type = Newsletter::TYPE_NOTIFICATION_HISTORY; $this->newsletter->parent_id = $this->newsletter->id; $posts_task = $this->make(PostsTask::class, [ - 'getAlcPostsCount' => 1 + 'getAlcPostsCount' => 1, ]); $newsletter_task = new NewsletterTask(new WPFunctions, $posts_task); $result = $newsletter_task->preProcessNewsletter($this->newsletter, $this->queue); diff --git a/tests/integration/Cron/Workers/StatsNotifications/SchedulerTest.php b/tests/integration/Cron/Workers/StatsNotifications/SchedulerTest.php index 6dc5855c2e..609a0b903f 100644 --- a/tests/integration/Cron/Workers/StatsNotifications/SchedulerTest.php +++ b/tests/integration/Cron/Workers/StatsNotifications/SchedulerTest.php @@ -21,7 +21,7 @@ class SchedulerTest extends \MailPoetTest { $this->stats_notifications = new Scheduler($this->settings); $this->settings->set(Worker::SETTINGS_KEY, [ 'enabled' => true, - 'address' => 'email@example.com' + 'address' => 'email@example.com', ]); $this->settings->set('tracking.enabled', true); } @@ -49,7 +49,7 @@ class SchedulerTest extends \MailPoetTest { $newsletter_id = 6; $this->settings->set(Worker::SETTINGS_KEY, [ 'enabled' => false, - 'address' => 'email@example.com' + 'address' => 'email@example.com', ]); $newsletter = Newsletter::createOrUpdate(['id' => $newsletter_id, 'type' => Newsletter::TYPE_STANDARD]); $this->stats_notifications->schedule($newsletter); @@ -81,7 +81,7 @@ class SchedulerTest extends \MailPoetTest { $newsletter_id = 9; $this->settings->set(Worker::SETTINGS_KEY, [ 'enabled' => true, - 'address' => ' ' + 'address' => ' ', ]); $newsletter = Newsletter::createOrUpdate(['id' => $newsletter_id, 'type' => Newsletter::TYPE_STANDARD]); $this->stats_notifications->schedule($newsletter); diff --git a/tests/integration/Cron/Workers/StatsNotifications/WorkerTest.php b/tests/integration/Cron/Workers/StatsNotifications/WorkerTest.php index 578641bace..7c0395c70f 100644 --- a/tests/integration/Cron/Workers/StatsNotifications/WorkerTest.php +++ b/tests/integration/Cron/Workers/StatsNotifications/WorkerTest.php @@ -43,7 +43,7 @@ class WorkerTest extends \MailPoetTest { $this->stats_notifications = new Worker($this->mailer, $this->renderer, $this->settings, new FeaturesController(), $this->makeEmpty(WCHelper::class)); $this->settings->set(Worker::SETTINGS_KEY, [ 'enabled' => true, - 'address' => 'email@example.com' + 'address' => 'email@example.com', ]); $newsletter = Newsletter::createOrUpdate([ 'subject' => 'Email Subject1', diff --git a/tests/integration/Logging/LogHandlerTest.php b/tests/integration/Logging/LogHandlerTest.php index 0980a6ff1a..80c03baeee 100644 --- a/tests/integration/Logging/LogHandlerTest.php +++ b/tests/integration/Logging/LogHandlerTest.php @@ -21,7 +21,7 @@ class LogHandlerTest extends \MailPoetTest { $log_handler = Mock::double($log_handler, [ 'createNewLogModel' => function () use ($log_model) { return $log_model; - } + }, ]); $log_handler->handle([ diff --git a/tests/integration/Mailer/Methods/MailPoetAPITest.php b/tests/integration/Mailer/Methods/MailPoetAPITest.php index 38494e813f..c1767fa5a9 100644 --- a/tests/integration/Mailer/Methods/MailPoetAPITest.php +++ b/tests/integration/Mailer/Methods/MailPoetAPITest.php @@ -223,7 +223,7 @@ class MailPoetAPITest extends \MailPoetTest { array('sendMessages' => [ 'code' => API::RESPONSE_CODE_PAYLOAD_ERROR, 'status' => API::SENDING_STATUS_SEND_ERROR, - 'message' => '[{"index":0,"errors":{"subject":"subject is missing"}},{"index":1,"errors":{"subject":"subject is missing"}}]' + 'message' => '[{"index":0,"errors":{"subject":"subject is missing"}},{"index":1,"errors":{"subject":"subject is missing"}}]', ]), $this ); diff --git a/tests/integration/Models/FormTest.php b/tests/integration/Models/FormTest.php index 09beab87a8..255a6e4160 100644 --- a/tests/integration/Models/FormTest.php +++ b/tests/integration/Models/FormTest.php @@ -124,11 +124,11 @@ class FormTest extends \MailPoetTest { function testItUpdatesSuccessMessagesWhenConfirmationIsDisabled() { $default = Form::createOrUpdate([ 'name' => 'with default message', - 'settings' => ['success_message' => Form::MESSAGE_WHEN_CONFIRMATION_ENABLED] + 'settings' => ['success_message' => Form::MESSAGE_WHEN_CONFIRMATION_ENABLED], ]); $custom = Form::createOrUpdate([ 'name' => 'with custom message', - 'settings' => ['success_message' => 'Thanks for joining us!'] + 'settings' => ['success_message' => 'Thanks for joining us!'], ]); $this->settings->set('signup_confirmation.enabled', '0'); Form::updateSuccessMessages(); @@ -141,11 +141,11 @@ class FormTest extends \MailPoetTest { function testItUpdatesSuccessMessagesWhenConfirmationIsEnabled() { $default = Form::createOrUpdate([ 'name' => 'with default message', - 'settings' => ['success_message' => Form::MESSAGE_WHEN_CONFIRMATION_DISABLED] + 'settings' => ['success_message' => Form::MESSAGE_WHEN_CONFIRMATION_DISABLED], ]); $custom = Form::createOrUpdate([ 'name' => 'with custom message', - 'settings' => ['success_message' => 'Thanks for joining us!'] + 'settings' => ['success_message' => 'Thanks for joining us!'], ]); $this->settings->set('signup_confirmation.enabled', '1'); Form::updateSuccessMessages(); diff --git a/tests/integration/Models/ScheduledTaskTest.php b/tests/integration/Models/ScheduledTaskTest.php index f2b8db6255..b515f0b9e7 100644 --- a/tests/integration/Models/ScheduledTaskTest.php +++ b/tests/integration/Models/ScheduledTaskTest.php @@ -93,15 +93,15 @@ class ScheduledTaskTest extends \MailPoetTest { $task_id = $this->task->id; ScheduledTaskSubscriber::createOrUpdate([ 'task_id' => $task_id, - 'subscriber_id' => 1 + 'subscriber_id' => 1, ]); ScheduledTaskSubscriber::createOrUpdate([ 'task_id' => $task_id, - 'subscriber_id' => 2 + 'subscriber_id' => 2, ]); ScheduledTaskSubscriber::createOrUpdate([ 'task_id' => $task_id, - 'subscriber_id' => 3 + 'subscriber_id' => 3, ]); $count = ScheduledTaskSubscriber::where('task_id', $task_id)->count(); expect($count)->equals(3); diff --git a/tests/integration/Models/SendingQueueTest.php b/tests/integration/Models/SendingQueueTest.php index c55dcab457..29f3e84de4 100644 --- a/tests/integration/Models/SendingQueueTest.php +++ b/tests/integration/Models/SendingQueueTest.php @@ -27,7 +27,7 @@ class SendingQueueTest extends \MailPoetTest { $mock = Mock::double('MailPoet\WP\Emoji', [ 'encodeForUTF8Column' => function($params) { return $params; - } + }, ]); $this->queue->encodeEmojisInBody($this->rendered_body); $mock->verifyInvokedMultipleTimes('encodeForUTF8Column', 2); @@ -37,7 +37,7 @@ class SendingQueueTest extends \MailPoetTest { $mock = Mock::double('MailPoet\WP\Emoji', [ 'decodeEntities' => function($params) { return $params; - } + }, ]); $this->queue->decodeEmojisInBody($this->rendered_body); $mock->verifyInvokedMultipleTimes('decodeEntities', 2); diff --git a/tests/integration/Models/SettingTest.php b/tests/integration/Models/SettingTest.php index 4fe67e1031..382863d6c4 100644 --- a/tests/integration/Models/SettingTest.php +++ b/tests/integration/Models/SettingTest.php @@ -27,7 +27,7 @@ class SettingTest extends \MailPoetTest { Setting::createOrUpdate(['name' => 'key_2', 'value' => 'value_2']); Setting::createOrUpdate(['name' => 'key_3', 'value' => serialize([ 'subkey_1' => 'subvalue_1', - 'subkey_2' => 'subvalue_2' + 'subkey_2' => 'subvalue_2', ])]); $settings = Setting::getAll(); diff --git a/tests/integration/Models/UserFlagTest.php b/tests/integration/Models/UserFlagTest.php index b971b6c63b..e89d3889af 100644 --- a/tests/integration/Models/UserFlagTest.php +++ b/tests/integration/Models/UserFlagTest.php @@ -13,12 +13,12 @@ class UserFlagTest extends \MailPoetTest { $created_flag = UserFlag::createOrUpdate([ 'user_id' => 3, 'name' => 'first_flag', - 'value' => 'foo' + 'value' => 'foo', ]); $other_flag = UserFlag::createOrUpdate([ 'user_id' => 3, 'name' => 'second_flag', - 'value' => 'bar' + 'value' => 'bar', ]); expect($created_flag->id > 0)->true(); expect($created_flag->getErrors())->false(); @@ -30,12 +30,12 @@ class UserFlagTest extends \MailPoetTest { $created_flag = UserFlag::createOrUpdate([ 'user_id' => 3, 'name' => 'first_flag', - 'value' => 'foo' + 'value' => 'foo', ]); $updated_flag = UserFlag::createOrUpdate([ 'user_id' => 3, 'name' => 'first_flag', - 'value' => 'bar' + 'value' => 'bar', ]); expect($updated_flag->id)->equals($created_flag->id); expect($updated_flag->value)->equals('bar'); diff --git a/tests/integration/Segments/WooCommerceTest.php b/tests/integration/Segments/WooCommerceTest.php index 60decc7058..1585e09314 100644 --- a/tests/integration/Segments/WooCommerceTest.php +++ b/tests/integration/Segments/WooCommerceTest.php @@ -395,7 +395,7 @@ class WooCommerceTest extends \MailPoetTest { 'email' => $user2->user_email, 'is_woocommerce_user' => 1, 'status' => Subscriber::STATUS_UNSUBSCRIBED, - 'confirmed_ip' => '123' + 'confirmed_ip' => '123', ]); $association2 = SubscriberSegment::create(); $association2->subscriber_id = $subscriber2->id; @@ -437,7 +437,7 @@ class WooCommerceTest extends \MailPoetTest { 'email' => $user2->user_email, 'is_woocommerce_user' => 1, 'status' => Subscriber::STATUS_SUBSCRIBED, - 'confirmed_ip' => '123' + 'confirmed_ip' => '123', ]); $association2 = SubscriberSegment::create(); $association2->subscriber_id = $subscriber2->id; diff --git a/tests/integration/Services/BridgeTest.php b/tests/integration/Services/BridgeTest.php index 6f0e71e236..008389db98 100644 --- a/tests/integration/Services/BridgeTest.php +++ b/tests/integration/Services/BridgeTest.php @@ -266,7 +266,7 @@ class BridgeTest extends \MailPoetTest { $wp = Stub::make(new WPFunctions, [ 'wpRemotePost' => function() use (&$wp_remote_post_args) { $wp_remote_post_args = func_get_args(); - } + }, ]); $api = new API('test_key', $wp); diff --git a/tests/integration/Settings/SettingsControllerTest.php b/tests/integration/Settings/SettingsControllerTest.php index 4e9663f915..c9b769618d 100644 --- a/tests/integration/Settings/SettingsControllerTest.php +++ b/tests/integration/Settings/SettingsControllerTest.php @@ -52,7 +52,7 @@ class SettingsControllerTest extends \MailPoetTest { $settings = Stub::make($this->controller, [ 'getAllDefaults' => function () { return ['default1' => ['default2' => 1]]; - } + }, ]); $settings->delete('default1'); $value = $settings->get('default1'); diff --git a/tests/integration/Subscribers/ConfirmationEmailMailerTest.php b/tests/integration/Subscribers/ConfirmationEmailMailerTest.php index 36328aec59..d952555a0e 100644 --- a/tests/integration/Subscribers/ConfirmationEmailMailerTest.php +++ b/tests/integration/Subscribers/ConfirmationEmailMailerTest.php @@ -14,13 +14,13 @@ class ConfirmationEmailMailerTest extends \MailPoetTest { function testItSendsConfirmationEmail() { Mock::double('MailPoet\Subscription\Url', [ - 'getConfirmationUrl' => 'http://example.com' + 'getConfirmationUrl' => 'http://example.com', ]); $subscriber = Subscriber::create(); $subscriber->hydrate([ 'first_name' => 'John', 'last_name' => 'Mailer', - 'email' => 'john@mailpoet.com' + 'email' => 'john@mailpoet.com', ]); $mailer = Stub::makeEmpty(Mailer::class, [ @@ -52,7 +52,7 @@ class ConfirmationEmailMailerTest extends \MailPoetTest { $subscriber->hydrate([ 'first_name' => 'John', 'last_name' => 'Mailer', - 'email' => 'john@mailpoet.com' + 'email' => 'john@mailpoet.com', ]); $mailer = Stub::makeEmpty(Mailer::class, [ @@ -76,13 +76,13 @@ class ConfirmationEmailMailerTest extends \MailPoetTest { $subscriber->hydrate([ 'first_name' => 'John', 'last_name' => 'Mailer', - 'email' => 'john@mailpoet.com' + 'email' => 'john@mailpoet.com', ]); $mailer = Stub::makeEmpty(Mailer::class, [ 'send' => function() { return true; - } + }, ], $this); $sender = new ConfirmationEmailMailer($mailer); @@ -99,13 +99,13 @@ class ConfirmationEmailMailerTest extends \MailPoetTest { $subscriber->hydrate([ 'first_name' => 'John', 'last_name' => 'Mailer', - 'email' => 'john@mailpoet.com' + 'email' => 'john@mailpoet.com', ]); $mailer = Stub::makeEmpty(Mailer::class, [ 'send' => function() { return true; - } + }, ], $this); $sender = new ConfirmationEmailMailer($mailer); diff --git a/tests/integration/Subscribers/ImportExport/Export/DefaultSubscribersGetterTest.php b/tests/integration/Subscribers/ImportExport/Export/DefaultSubscribersGetterTest.php index 7b78b96ab1..7af5d56ec1 100644 --- a/tests/integration/Subscribers/ImportExport/Export/DefaultSubscribersGetterTest.php +++ b/tests/integration/Subscribers/ImportExport/Export/DefaultSubscribersGetterTest.php @@ -142,7 +142,7 @@ class DefaultSubscribersGetterTest extends \MailPoetTest { 'list_status' => Subscriber::STATUS_SUBSCRIBED, 'segment_name' => 'Newspapers', 1 => 'Brazil', - ) + ), ]); expect($getter->get())->equals(false); @@ -191,7 +191,7 @@ class DefaultSubscribersGetterTest extends \MailPoetTest { 'list_status' => Subscriber::STATUS_SUBSCRIBED, 'segment_name' => 'Journals', 1 => null, - ) + ), ]); expect($getter->get())->equals(false); @@ -219,7 +219,7 @@ class DefaultSubscribersGetterTest extends \MailPoetTest { 'list_status' => Subscriber::STATUS_SUBSCRIBED, 'segment_name' => 'Journals', 1 => null - ) + ), ]); expect($this->filterSubscribersData($getter->get()))->equals([ @@ -242,7 +242,7 @@ class DefaultSubscribersGetterTest extends \MailPoetTest { 'list_status' => Subscriber::STATUS_SUBSCRIBED, 'segment_name' => 'Journals', 1 => null, - ) + ), ]); expect($getter->get())->equals([]); @@ -262,7 +262,7 @@ class DefaultSubscribersGetterTest extends \MailPoetTest { 'list_status' => null, 'segment_name' => 'Not In Segment', 1 => null - ) + ), ]); } diff --git a/tests/integration/Subscribers/ImportExport/Export/DynamicSubscribersGetterTest.php b/tests/integration/Subscribers/ImportExport/Export/DynamicSubscribersGetterTest.php index c8defea368..24431c0457 100644 --- a/tests/integration/Subscribers/ImportExport/Export/DynamicSubscribersGetterTest.php +++ b/tests/integration/Subscribers/ImportExport/Export/DynamicSubscribersGetterTest.php @@ -138,7 +138,7 @@ class DynamicSubscribersGetterTest extends \MailPoetTest { 'list_status' => Subscriber::STATUS_SUBSCRIBED, 'segment_name' => 'Newspapers', 1 => 'Brazil', - ) + ), ]); expect($getter->get())->equals(false); @@ -166,7 +166,7 @@ class DynamicSubscribersGetterTest extends \MailPoetTest { 'list_status' => Subscriber::STATUS_SUBSCRIBED, 'segment_name' => 'Newspapers', 1 => 'Brazil', - ) + ), ]); expect($this->filterSubscribersData($getter->get()))->equals([ @@ -199,7 +199,7 @@ class DynamicSubscribersGetterTest extends \MailPoetTest { 'list_status' => Subscriber::STATUS_UNCONFIRMED, 'segment_name' => 'Journals', 1 => null, - ) + ), ]); expect($getter->get())->equals(false); @@ -227,7 +227,7 @@ class DynamicSubscribersGetterTest extends \MailPoetTest { 'list_status' => Subscriber::STATUS_SUBSCRIBED, 'segment_name' => 'Newspapers', 1 => 'Brazil', - ) + ), ]); expect($this->filterSubscribersData($getter->get()))->equals([]); @@ -252,7 +252,7 @@ class DynamicSubscribersGetterTest extends \MailPoetTest { 'list_status' => Subscriber::STATUS_UNCONFIRMED, 'segment_name' => 'Journals', 1 => null, - ) + ), ]); expect($this->filterSubscribersData($getter->get()))->equals([ @@ -265,7 +265,7 @@ class DynamicSubscribersGetterTest extends \MailPoetTest { 'list_status' => Subscriber::STATUS_UNCONFIRMED, 'segment_name' => 'Journals', 1 => null, - ) + ), ]); expect($getter->get())->equals(false); diff --git a/tests/integration/Subscribers/RequiredCustomFieldValidatorTest.php b/tests/integration/Subscribers/RequiredCustomFieldValidatorTest.php index 631a30b107..91b725686d 100644 --- a/tests/integration/Subscribers/RequiredCustomFieldValidatorTest.php +++ b/tests/integration/Subscribers/RequiredCustomFieldValidatorTest.php @@ -15,7 +15,7 @@ class RequiredCustomFieldValidatorTest extends \MailPoetTest { $this->custom_field = CustomField::createOrUpdate([ 'name' => 'custom field', 'type' => 'text', - 'params' => ['required' => '1'] + 'params' => ['required' => '1'], ]); } @@ -51,7 +51,7 @@ class RequiredCustomFieldValidatorTest extends \MailPoetTest { CustomField::createOrUpdate([ 'name' => 'custom field 2', 'type' => 'text', - 'params' => ['required' => '1'] + 'params' => ['required' => '1'], ]); $form = Form::createOrUpdate([ 'name' => 'form', diff --git a/tests/integration/Subscription/FormTest.php b/tests/integration/Subscription/FormTest.php index a30c0f50b5..2be4c42885 100644 --- a/tests/integration/Subscription/FormTest.php +++ b/tests/integration/Subscription/FormTest.php @@ -76,7 +76,7 @@ class FormTest extends \MailPoetTest { $url_helper = Stub::make(UrlHelper::class, [ 'redirectBack' => function($params) { return $params; - } + }, ], $this); $form_controller = new Form(ContainerWrapper::getInstance()->get(API::class), $url_helper); $result = $form_controller->onSubmit($this->request_data); @@ -99,7 +99,7 @@ class FormTest extends \MailPoetTest { }, 'redirectBack' => function($params) { return $params; - } + }, ], $this); $form_controller = new Form(ContainerWrapper::getInstance()->get(API::class), $url_helper); $result = $form_controller->onSubmit($this->request_data); @@ -114,7 +114,7 @@ class FormTest extends \MailPoetTest { $url_helper = Stub::make(UrlHelper::class, [ 'redirectBack' => function($params) { return $params; - } + }, ], $this); $form_controller = new Form(ContainerWrapper::getInstance()->get(API::class), $url_helper); $result = $form_controller->onSubmit($request_data); diff --git a/tests/integration/Tasks/SendingTest.php b/tests/integration/Tasks/SendingTest.php index 2e4a89f2e7..f799155540 100644 --- a/tests/integration/Tasks/SendingTest.php +++ b/tests/integration/Tasks/SendingTest.php @@ -16,12 +16,12 @@ class SendingTest extends \MailPoetTest { $this->task = $this->createNewScheduledTask(); $this->queue = $this->createNewSendingQueue([ 'newsletter' => $this->newsletter, - 'task' => $this->task + 'task' => $this->task, ]); $this->sending = $this->createNewSendingTask([ 'status' => null, 'task' => $this->task, - 'queue' => $this->queue + 'queue' => $this->queue, ]); } diff --git a/tests/integration/Twig/FunctionsTest.php b/tests/integration/Twig/FunctionsTest.php index 16b00beb98..627cff2a9e 100644 --- a/tests/integration/Twig/FunctionsTest.php +++ b/tests/integration/Twig/FunctionsTest.php @@ -13,13 +13,13 @@ class FunctionsTest extends \MailPoetTest { $twig->addExtension(new Functions()); WPFunctions::set(Stub::make(new WPFunctions, [ - 'isRtl' => true + 'isRtl' => true, ])); $result = $twig->render('template'); expect($result)->equals('rtl'); WPFunctions::set(Stub::make(new WPFunctions, [ - 'isRtl' => false + 'isRtl' => false, ])); $result = $twig->render('template'); expect($result)->isEmpty(); diff --git a/tests/integration/Util/Notices/PHPVersionWarningsTest.php b/tests/integration/Util/Notices/PHPVersionWarningsTest.php index aec421ec0b..91f17f4ebf 100644 --- a/tests/integration/Util/Notices/PHPVersionWarningsTest.php +++ b/tests/integration/Util/Notices/PHPVersionWarningsTest.php @@ -36,7 +36,7 @@ class PHPVersionWarningsTest extends \MailPoetTest { $mock = Mock::double('MailPoet\WP\Notice', [ 'displayWarning' => function($message, $classes, $data_notice_name) { return $message; - } + }, ]); $warning = $this->phpVersionWarning->init('5.6.3', true); $mock->verifyInvoked('displayWarning'); diff --git a/tests/integration/_bootstrap.php b/tests/integration/_bootstrap.php index 63e218dcb9..3ac6a89ec2 100644 --- a/tests/integration/_bootstrap.php +++ b/tests/integration/_bootstrap.php @@ -1,172 +1,172 @@ -writeln('Loading WP core... (' . $wp_load_file . ')'); - -$console->writeln('Cleaning up database...'); -$models = array( - 'CustomField', - 'Form', - 'Newsletter', - 'NewsletterLink', - 'NewsletterPost', - 'NewsletterSegment', - 'NewsletterTemplate', - 'NewsletterOption', - 'NewsletterOptionField', - 'Segment', - 'Log', - 'ScheduledTask', - 'ScheduledTaskSubscriber', - 'SendingQueue', - 'Setting', - 'Subscriber', - 'SubscriberCustomField', - 'SubscriberSegment', - 'SubscriberIP', - 'StatisticsOpens', - 'StatisticsClicks', - 'StatisticsNewsletters', - 'StatisticsUnsubscribes' -); -$destroy = function($model) { - $class = new \ReflectionClass('\MailPoet\Models\\' . $model); - $table = $class->getStaticPropertyValue('_table'); - $db = ORM::getDb(); - $db->beginTransaction(); - $db->exec('TRUNCATE ' . $table); - $db->commit(); -}; -array_map($destroy, $models); - -$cacheDir = '/tmp'; -if (is_dir(getenv('WP_TEST_CACHE_PATH'))) { - $cacheDir = getenv('WP_TEST_CACHE_PATH'); -} - -$console->writeln('Clearing AspectMock cache...'); -exec('rm -rf ' . $cacheDir . '/_transformation.cache'); - -$console->writeln('Initializing AspectMock library...'); -$kernel = \AspectMock\Kernel::getInstance(); -$kernel->init( - array( - 'debug' => true, - 'appDir' => __DIR__ . '/../../', - 'cacheDir' => $cacheDir, - 'includePaths' => [__DIR__ . '/../../lib'] - ) -); - -// This hook throws an 'Undefined index: SERVER_NAME' error in CLI mode, -// the action is called in ConflictResolverTest -remove_filter('admin_print_styles', 'wp_resource_hints', 1); - -// Unset filters, which woocommerce hooks onto and causes integration tests -// to fail, because some WC's functions can't be serialized -$woocommerceBlacklistFilters = [ - 'init', - 'after_switch_theme', - 'after_setup_theme', - 'switch_blog', - 'shutdown' -]; -foreach ($woocommerceBlacklistFilters as $woocommerceBlacklistFilter) { - unset($GLOBALS['wp_filter'][$woocommerceBlacklistFilter]); -}; - -abstract class MailPoetTest extends \Codeception\TestCase\Test { - protected $backupGlobals = true; - protected $backupGlobalsBlacklist = array( - 'app', - 'post', - 'authordata', - 'currentday', - 'currentmonth', - 'page', - 'pages', - 'multipage', - 'more', - 'numpages', - 'is_iphone', - 'is_chrome', - 'is_safari', - 'is_NS4', - 'is_opera', - 'is_macIE', - 'is_winIE', - 'is_gecko', - 'is_lynx', - 'is_IE', - 'is_apache', - 'is_IIS', - 'is_iis7', - 'wp_version', - 'wp_db_version', - 'tinymce_version', - 'manifest_version', - 'required_php_version', - 'required_mysql_version', - 'super_admins', - 'wp_query', - 'wp_rewrite', - 'wp', - 'wpdb', - 'wp_locale', - 'wp_admin_bar', - 'wp_roles', - 'wp_meta_boxes', - 'wp_registered_sidebars', - 'wp_registered_widgets', - 'wp_registered_widget_controls', - 'wp_registered_widget_updates', - 'pagenow', - 'post_type', - 'allowedposttags', - 'allowedtags', - 'menu', - 'woocommerce' - ); - protected $backupStaticAttributes = false; - protected $runTestInSeparateProcess = false; - protected $preserveGlobalState = false; - protected $inIsolation = false; - - function _before() { - \MailPoet\Settings\SettingsController::resetCache(); - } - - /** - * Call protected/private method of a class. - * - * @param object &$object Instantiated object that we will run method on. - * @param string $methodName Method name to call - * @param array $parameters Array of parameters to pass into method. - * - * @return mixed Method return. - */ - public function invokeMethod(&$object, $methodName, array $parameters = array()) { - $reflection = new \ReflectionClass(get_class($object)); - $method = $reflection->getMethod($methodName); - $method->setAccessible(true); - - return $method->invokeArgs($object, $parameters); - } -} - -function asCallable($fn) { - return function() use(&$fn) { - return call_user_func_array($fn, func_get_args()); - }; -} - -include '_fixtures.php'; +writeln('Loading WP core... (' . $wp_load_file . ')'); + +$console->writeln('Cleaning up database...'); +$models = array( + 'CustomField', + 'Form', + 'Newsletter', + 'NewsletterLink', + 'NewsletterPost', + 'NewsletterSegment', + 'NewsletterTemplate', + 'NewsletterOption', + 'NewsletterOptionField', + 'Segment', + 'Log', + 'ScheduledTask', + 'ScheduledTaskSubscriber', + 'SendingQueue', + 'Setting', + 'Subscriber', + 'SubscriberCustomField', + 'SubscriberSegment', + 'SubscriberIP', + 'StatisticsOpens', + 'StatisticsClicks', + 'StatisticsNewsletters', + 'StatisticsUnsubscribes' +); +$destroy = function($model) { + $class = new \ReflectionClass('\MailPoet\Models\\' . $model); + $table = $class->getStaticPropertyValue('_table'); + $db = ORM::getDb(); + $db->beginTransaction(); + $db->exec('TRUNCATE ' . $table); + $db->commit(); +}; +array_map($destroy, $models); + +$cacheDir = '/tmp'; +if (is_dir(getenv('WP_TEST_CACHE_PATH'))) { + $cacheDir = getenv('WP_TEST_CACHE_PATH'); +} + +$console->writeln('Clearing AspectMock cache...'); +exec('rm -rf ' . $cacheDir . '/_transformation.cache'); + +$console->writeln('Initializing AspectMock library...'); +$kernel = \AspectMock\Kernel::getInstance(); +$kernel->init( + array( + 'debug' => true, + 'appDir' => __DIR__ . '/../../', + 'cacheDir' => $cacheDir, + 'includePaths' => [__DIR__ . '/../../lib'] + ) +); + +// This hook throws an 'Undefined index: SERVER_NAME' error in CLI mode, +// the action is called in ConflictResolverTest +remove_filter('admin_print_styles', 'wp_resource_hints', 1); + +// Unset filters, which woocommerce hooks onto and causes integration tests +// to fail, because some WC's functions can't be serialized +$woocommerceBlacklistFilters = [ + 'init', + 'after_switch_theme', + 'after_setup_theme', + 'switch_blog', + 'shutdown', +]; +foreach ($woocommerceBlacklistFilters as $woocommerceBlacklistFilter) { + unset($GLOBALS['wp_filter'][$woocommerceBlacklistFilter]); +}; + +abstract class MailPoetTest extends \Codeception\TestCase\Test { + protected $backupGlobals = true; + protected $backupGlobalsBlacklist = array( + 'app', + 'post', + 'authordata', + 'currentday', + 'currentmonth', + 'page', + 'pages', + 'multipage', + 'more', + 'numpages', + 'is_iphone', + 'is_chrome', + 'is_safari', + 'is_NS4', + 'is_opera', + 'is_macIE', + 'is_winIE', + 'is_gecko', + 'is_lynx', + 'is_IE', + 'is_apache', + 'is_IIS', + 'is_iis7', + 'wp_version', + 'wp_db_version', + 'tinymce_version', + 'manifest_version', + 'required_php_version', + 'required_mysql_version', + 'super_admins', + 'wp_query', + 'wp_rewrite', + 'wp', + 'wpdb', + 'wp_locale', + 'wp_admin_bar', + 'wp_roles', + 'wp_meta_boxes', + 'wp_registered_sidebars', + 'wp_registered_widgets', + 'wp_registered_widget_controls', + 'wp_registered_widget_updates', + 'pagenow', + 'post_type', + 'allowedposttags', + 'allowedtags', + 'menu', + 'woocommerce' + ); + protected $backupStaticAttributes = false; + protected $runTestInSeparateProcess = false; + protected $preserveGlobalState = false; + protected $inIsolation = false; + + function _before() { + \MailPoet\Settings\SettingsController::resetCache(); + } + + /** + * Call protected/private method of a class. + * + * @param object &$object Instantiated object that we will run method on. + * @param string $methodName Method name to call + * @param array $parameters Array of parameters to pass into method. + * + * @return mixed Method return. + */ + public function invokeMethod(&$object, $methodName, array $parameters = array()) { + $reflection = new \ReflectionClass(get_class($object)); + $method = $reflection->getMethod($methodName); + $method->setAccessible(true); + + return $method->invokeArgs($object, $parameters); + } +} + +function asCallable($fn) { + return function() use(&$fn) { + return call_user_func_array($fn, func_get_args()); + }; +} + +include '_fixtures.php'; diff --git a/tests/unit/API/JSON/ErrorResponseTest.php b/tests/unit/API/JSON/ErrorResponseTest.php index 2d41cfe6a2..06aae27a72 100644 --- a/tests/unit/API/JSON/ErrorResponseTest.php +++ b/tests/unit/API/JSON/ErrorResponseTest.php @@ -11,7 +11,7 @@ class ErrorResponseTest extends \MailPoetUnitTest { WPFunctions::set(Stub::make(new WPFunctions, [ '__' => function ($value) { return $value; - } + }, ])); $errors = array( 'valid error', diff --git a/tests/unit/DI/ContainerWrapperTest.php b/tests/unit/DI/ContainerWrapperTest.php index 31b79efe32..67c6f14e9f 100644 --- a/tests/unit/DI/ContainerWrapperTest.php +++ b/tests/unit/DI/ContainerWrapperTest.php @@ -31,7 +31,7 @@ class ContainerWrapperTest extends \MailPoetUnitTest { $free_container_stub = Stub::make(Container::class, [ 'get' => function () { return 'service'; - } + }, ]); $instance = new ContainerWrapper($free_container_stub); $service = $instance->get('service_id'); @@ -42,7 +42,7 @@ class ContainerWrapperTest extends \MailPoetUnitTest { $free_container_stub = Stub::make(Container::class, [ 'get' => function ($id) { throw new ServiceNotFoundException($id); - } + }, ]); $instance = new ContainerWrapper($free_container_stub); $exception = null; @@ -58,12 +58,12 @@ class ContainerWrapperTest extends \MailPoetUnitTest { $free_container_stub = Stub::make(Container::class, [ 'get' => function ($id) { throw new ServiceNotFoundException($id); - } + }, ]); $premium_container_stub = Stub::make(Container::class, [ 'get' => function () { return 'service_1'; - } + }, ]); $instance = new ContainerWrapper($free_container_stub, $premium_container_stub); expect($instance->get('service'))->equals('service_1'); @@ -73,7 +73,7 @@ class ContainerWrapperTest extends \MailPoetUnitTest { $container_stub = Stub::make(Container::class, [ 'get' => function ($id) { throw new ServiceNotFoundException($id); - } + }, ]); $instance = new ContainerWrapper($container_stub, $container_stub); $exception = null; diff --git a/tests/unit/Mailer/MailerErrorTest.php b/tests/unit/Mailer/MailerErrorTest.php index 6cf30997a8..04f818e3bc 100644 --- a/tests/unit/Mailer/MailerErrorTest.php +++ b/tests/unit/Mailer/MailerErrorTest.php @@ -12,7 +12,7 @@ class MailerErrorTest extends \MailPoetUnitTest { WPFunctions::set(Stub::make(new WPFunctions, [ '__' => function ($value) { return $value; - } + }, ])); } diff --git a/tests/unit/Mailer/Methods/ErrorMappers/PHPMailMapperTest.php b/tests/unit/Mailer/Methods/ErrorMappers/PHPMailMapperTest.php index fa7fc86ae9..d7e15b7eef 100644 --- a/tests/unit/Mailer/Methods/ErrorMappers/PHPMailMapperTest.php +++ b/tests/unit/Mailer/Methods/ErrorMappers/PHPMailMapperTest.php @@ -17,7 +17,7 @@ class PHPMailMapperTest extends \MailPoetUnitTest { WPFunctions::set(Stub::make(new WPFunctions, [ '__' => function ($value) { return $value; - } + }, ])); } diff --git a/tests/unit/Mailer/Methods/ErrorMappers/SMTPMapperTest.php b/tests/unit/Mailer/Methods/ErrorMappers/SMTPMapperTest.php index 59ec0e4f56..b6a24b4c4c 100644 --- a/tests/unit/Mailer/Methods/ErrorMappers/SMTPMapperTest.php +++ b/tests/unit/Mailer/Methods/ErrorMappers/SMTPMapperTest.php @@ -18,7 +18,7 @@ class SMTPMapperTest extends \MailPoetUnitTest { WPFunctions::set(Stub::make(new WPFunctions, [ '__' => function ($value) { return $value; - } + }, ])); } diff --git a/tests/unit/Mailer/Methods/ErrorMappers/SendGridMapperTest.php b/tests/unit/Mailer/Methods/ErrorMappers/SendGridMapperTest.php index 0e0e19ec08..dcb03aaaa3 100644 --- a/tests/unit/Mailer/Methods/ErrorMappers/SendGridMapperTest.php +++ b/tests/unit/Mailer/Methods/ErrorMappers/SendGridMapperTest.php @@ -18,7 +18,7 @@ class SendGridMapperTest extends \MailPoetUnitTest { $this->response = [ 'errors' => [ 'Some message', - ] + ], ]; } diff --git a/tests/unit/Newsletter/Renderer/StylesHelperTest.php b/tests/unit/Newsletter/Renderer/StylesHelperTest.php index 40bd76ce70..1662e497b9 100644 --- a/tests/unit/Newsletter/Renderer/StylesHelperTest.php +++ b/tests/unit/Newsletter/Renderer/StylesHelperTest.php @@ -10,26 +10,26 @@ class StylesHelperTest extends \MailPoetUnitTest { "text" => [ "fontColor" => "#565656", "fontFamily" => "Arial", - "fontSize" => "16px" + "fontSize" => "16px", ], "h1" => [ "fontColor" => "#565656", "fontFamily" => "Roboto", - "fontSize" => "36px" + "fontSize" => "36px", ], "h2" => [ "fontColor" => "#565656", "fontFamily" => "Source Sans Pro", - "fontSize" => "26px" + "fontSize" => "26px", ], "h3" => [ "fontColor" => "#565656", "fontFamily" => "Roboto", - "fontSize" => "18px" + "fontSize" => "18px", ], "link" => [ "fontColor" => "#561ab9", - "textDecoration" => "underline" + "textDecoration" => "underline", ], ]; @@ -37,26 +37,26 @@ class StylesHelperTest extends \MailPoetUnitTest { "text" => [ "fontColor" => "#565656", "fontFamily" => "Arial", - "fontSize" => "16px" + "fontSize" => "16px", ], "h1" => [ "fontColor" => "#565656", "fontFamily" => "Arial", - "fontSize" => "36px" + "fontSize" => "36px", ], "h2" => [ "fontColor" => "#565656", "fontFamily" => "Times New Roman", - "fontSize" => "26px" + "fontSize" => "26px", ], "h3" => [ "fontColor" => "#565656", "fontFamily" => "Georgia", - "fontSize" => "18px" + "fontSize" => "18px", ], "link" => [ "fontColor" => "#561ab9", - "textDecoration" => "underline" + "textDecoration" => "underline", ], ]; diff --git a/tests/unit/Subscribers/ImportExport/Import/MailChimpTest.php b/tests/unit/Subscribers/ImportExport/Import/MailChimpTest.php index 6695ee6245..14eb34d5bc 100644 --- a/tests/unit/Subscribers/ImportExport/Import/MailChimpTest.php +++ b/tests/unit/Subscribers/ImportExport/Import/MailChimpTest.php @@ -17,7 +17,7 @@ class MailChimpTest extends \MailPoetUnitTest { WPFunctions::set(Stub::make(new WPFunctions, [ '__' => function ($value) { return $value; - } + }, ])); } diff --git a/tests/unit/Util/HelpersTest.php b/tests/unit/Util/HelpersTest.php index a844d3691c..cfa535c9c2 100644 --- a/tests/unit/Util/HelpersTest.php +++ b/tests/unit/Util/HelpersTest.php @@ -44,17 +44,17 @@ class HelpersTest extends \MailPoetUnitTest { 'list' => [ 'string 1', 'string 2 ', - ' string 3 ' + ' string 3 ', ], - 'number' => 523 + 'number' => 523, ]))->equals([ 'name' => 'some text here', 'list' => [ 'string 1', 'string 2', - 'string 3' + 'string 3', ], - 'number' => 523 + 'number' => 523, ]); } } \ No newline at end of file diff --git a/tests/unit/WP/DateTimeTest.php b/tests/unit/WP/DateTimeTest.php index 4d0db37787..99e8c61820 100644 --- a/tests/unit/WP/DateTimeTest.php +++ b/tests/unit/WP/DateTimeTest.php @@ -11,14 +11,14 @@ class DateTimeTest extends \MailPoetUnitTest { $date_time = new WPDateTime(Stub::make(new WPFunctions(), [ 'getOption' => function($key) { return 'H:i'; - } + }, ])); expect($date_time->getTimeFormat())->equals('H:i'); $date_time = new WPDateTime(Stub::make(new WPFunctions(), [ 'getOption' => function($key) { return ''; - } + }, ])); expect($date_time->getTimeFormat())->equals('H:i:s'); } @@ -27,14 +27,14 @@ class DateTimeTest extends \MailPoetUnitTest { $date_time = new WPDateTime(Stub::make(new WPFunctions(), [ 'getOption' => function($key) { return 'm-d'; - } + }, ])); expect($date_time->getDateFormat())->equals('m-d'); $date_time = new WPDateTime(Stub::make(new WPFunctions(), [ 'getOption' => function($key) { return ''; - } + }, ])); expect($date_time->getDateFormat())->equals('Y-m-d'); } @@ -43,7 +43,7 @@ class DateTimeTest extends \MailPoetUnitTest { $date_time = new WPDateTime(Stub::make(new WPFunctions(), [ 'currentTime' => function($format) { return date($format); - } + }, ])); expect($date_time->getCurrentDate("Y-m"))->equals(date("Y-m")); } @@ -52,7 +52,7 @@ class DateTimeTest extends \MailPoetUnitTest { $date_time = new WPDateTime(Stub::make(new WPFunctions(), [ 'currentTime' => function($format) { return date($format); - } + }, ])); expect($date_time->getCurrentTime("i:s"))->regExp('/\d\d:\d\d/'); } @@ -61,7 +61,7 @@ class DateTimeTest extends \MailPoetUnitTest { $date_time = new WPDateTime(Stub::make(new WPFunctions(), [ 'getOption' => function($key) { return 'H:i'; - } + }, ])); $timestamp = 1234567; $format = "H:i:s"; @@ -73,7 +73,7 @@ class DateTimeTest extends \MailPoetUnitTest { $date_time = new WPDateTime(Stub::make(new WPFunctions(), [ 'getOption' => function($key) { return 'm-d'; - } + }, ])); $timestamp = 1234567; $format = "Y-m-d"; @@ -85,7 +85,7 @@ class DateTimeTest extends \MailPoetUnitTest { $date_time = new WPDateTime(Stub::make(new WPFunctions(), [ 'getOption' => function($key) { return 'H:i'; - } + }, ])); $one_hour_interval = array_keys($date_time->getTimeInterval( '00:00:00', diff --git a/tests/unit/WP/PostsTest.php b/tests/unit/WP/PostsTest.php index b1385c8932..aace809b90 100644 --- a/tests/unit/WP/PostsTest.php +++ b/tests/unit/WP/PostsTest.php @@ -22,7 +22,7 @@ class PostsTest extends \MailPoetUnitTest { 'call check' => 'get_terms called', 'arguments' => func_get_args() ); - } + }, ])); $result = Posts::getTerms($args); @@ -45,7 +45,7 @@ class PostsTest extends \MailPoetUnitTest { 'call check' => 'get_terms called', 'arguments' => func_get_args() ); - } + }, ])); $result = Posts::getTerms($args); diff --git a/tests/unit/_bootstrap.php b/tests/unit/_bootstrap.php index 05db8fb3e6..9f3db9f250 100644 --- a/tests/unit/_bootstrap.php +++ b/tests/unit/_bootstrap.php @@ -1,10 +1,10 @@ -