diff --git a/src/Control/Controller.php b/src/Control/Controller.php index 6b73f00c1..697155ddd 100644 --- a/src/Control/Controller.php +++ b/src/Control/Controller.php @@ -63,7 +63,7 @@ class Controller extends RequestHandler implements TemplateGlobalProvider protected $templates = []; /** - * @deprecated 4.1.0...5.0.0 Add this controller's url to + * @deprecated 4.1.0:5.0.0 Add this controller's url to * SilverStripe\Security\BasicAuthMiddleware.URLPatterns injected property instead of setting false * @var bool */ @@ -531,7 +531,7 @@ class Controller extends RequestHandler implements TemplateGlobalProvider * called before Controller::init(). That is, you must call it in your controller's init method * before it calls parent::init(). * - * @deprecated 4.1.0...5.0.0 Add this controller's url to + * @deprecated 4.1.0:5.0.0 Add this controller's url to * SilverStripe\Security\BasicAuthMiddleware.URLPatterns injected property instead of setting false */ public function disableBasicAuth() diff --git a/src/Control/HTTP.php b/src/Control/HTTP.php index 8fc3741b9..b050e29e9 100644 --- a/src/Control/HTTP.php +++ b/src/Control/HTTP.php @@ -21,19 +21,19 @@ class HTTP use Configurable; /** - * @deprecated 4.2..5.0 Use HTTPCacheControlMiddleware::singleton()->setMaxAge($age) instead + * @deprecated 4.2.0:5.0.0 Use HTTPCacheControlMiddleware::singleton()->setMaxAge($age) instead * @var int */ protected static $cache_age = 0; /** - * @deprecated 4.2..5.0 Handled by HTTPCacheControlMiddleware + * @deprecated 4.2.0:5.0.0 Handled by HTTPCacheControlMiddleware * @var int */ protected static $modification_date = null; /** - * @deprecated 4.2..5.0 Handled by ChangeDetectionMiddleware + * @deprecated 4.2.0:5.0.0 Handled by ChangeDetectionMiddleware * @var string */ protected static $etag = null; @@ -41,7 +41,7 @@ class HTTP /** * @config * @var bool - * @deprecated 4.2..5.0 'HTTP.cache_ajax_requests config is deprecated. + * @deprecated 4.2.0:5.0.0 'HTTP.cache_ajax_requests config is deprecated. * Use HTTPCacheControlMiddleware::disableCache() instead' */ private static $cache_ajax_requests = false; @@ -49,7 +49,7 @@ class HTTP /** * @config * @var bool - * @deprecated 4.2..5.0 Use HTTPCacheControlMiddleware.defaultState/.defaultForcingLevel instead + * @deprecated 4.2.0:5.0.0 Use HTTPCacheControlMiddleware.defaultState/.defaultForcingLevel instead */ private static $disable_http_cache = false; @@ -71,7 +71,7 @@ class HTTP /** * List of names to add to the Cache-Control header. * - * @deprecated 4.2..5.0 Handled by HTTPCacheControlMiddleware instead + * @deprecated 4.2.0:5.0.0 Handled by HTTPCacheControlMiddleware instead * @see HTTPCacheControlMiddleware::__construct() * @config * @var array Keys are cache control names, values are boolean flags @@ -81,7 +81,7 @@ class HTTP /** * Vary string; A comma separated list of var header names * - * @deprecated 4.2..5.0 Handled by HTTPCacheControlMiddleware instead + * @deprecated 4.2.0:5.0.0 Handled by HTTPCacheControlMiddleware instead * @config * @var string|null */ @@ -372,7 +372,7 @@ class HTTP /** * Set the maximum age of this page in web caches, in seconds. * - * @deprecated 4.2..5.0 Use HTTPCacheControlMiddleware::singleton()->setMaxAge($age) instead + * @deprecated 4.2.0:5.0.0 Use HTTPCacheControlMiddleware::singleton()->setMaxAge($age) instead * @param int $age */ public static function set_cache_age($age) @@ -384,7 +384,7 @@ class HTTP /** * @param string $dateString - * @deprecated 4.2..5.0 Use HTTPCacheControlMiddleware::registerModificationDate() instead + * @deprecated 4.2.0:5.0.0 Use HTTPCacheControlMiddleware::registerModificationDate() instead */ public static function register_modification_date($dateString) { @@ -394,7 +394,7 @@ class HTTP /** * @param int $timestamp - * @deprecated 4.2..5.0 Use HTTPCacheControlMiddleware::registerModificationDate() instead + * @deprecated 4.2.0:5.0.0 Use HTTPCacheControlMiddleware::registerModificationDate() instead */ public static function register_modification_timestamp($timestamp) { @@ -403,7 +403,7 @@ class HTTP } /** - * @deprecated 4.2..5.0 Use ChangeDetectionMiddleware instead + * @deprecated 4.2.0:5.0.0 Use ChangeDetectionMiddleware instead * @param string $etag */ public static function register_etag($etag) @@ -426,7 +426,7 @@ class HTTP * output directly. * * @param HTTPResponse $response - * @deprecated 4.2..5.0 Headers are added automatically by HTTPCacheControlMiddleware instead. + * @deprecated 4.2.0:5.0.0 Headers are added automatically by HTTPCacheControlMiddleware instead. */ public static function add_cache_headers($response = null) { @@ -473,7 +473,7 @@ class HTTP /** * Ensure that all deprecated HTTP cache settings are respected * - * @deprecated 4.2..5.0 Use HTTPCacheControlMiddleware instead + * @deprecated 4.2.0:5.0.0 Use HTTPCacheControlMiddleware instead * @throws \LogicException * @param HTTPRequest $request * @param HTTPResponse $response @@ -560,7 +560,7 @@ class HTTP * is always in GMT: the number of seconds since January 1 1970 00:00:00 GMT) * * @param int $timestamp - * @deprecated 4.2..5.0 Inline if you need this + * @deprecated 4.2.0:5.0.0 Inline if you need this * @return string */ public static function gmt_date($timestamp) diff --git a/src/Control/RequestFilter.php b/src/Control/RequestFilter.php index 12b333f56..644ae17c0 100644 --- a/src/Control/RequestFilter.php +++ b/src/Control/RequestFilter.php @@ -9,7 +9,7 @@ namespace SilverStripe\Control; * * @author marcus@silverstripe.com.au * @license BSD License http://silverstripe.org/bsd-license/ - * @deprecated 4.0..5.0 Use HTTPMiddleware instead + * @deprecated 4.0.0:5.0.0 Use HTTPMiddleware instead */ interface RequestFilter { diff --git a/src/Control/RequestProcessor.php b/src/Control/RequestProcessor.php index 3a1d4f646..f2fe1559e 100644 --- a/src/Control/RequestProcessor.php +++ b/src/Control/RequestProcessor.php @@ -9,7 +9,7 @@ use SilverStripe\Dev\Deprecation; /** * Middleware that provides back-support for the deprecated RequestFilter API. * - * @deprecated 4.0..5.0 Use HTTPMiddleware directly instead. + * @deprecated 4.0.0:5.0.0 Use HTTPMiddleware directly instead. */ class RequestProcessor implements HTTPMiddleware { diff --git a/src/Control/Session.php b/src/Control/Session.php index f9f95d1cf..5892aa428 100644 --- a/src/Control/Session.php +++ b/src/Control/Session.php @@ -529,7 +529,7 @@ class Session * Recursively apply the changes represented in $data to $dest. * Used to update $_SESSION * - * @deprecated 4.1...5.0 Use recursivelyApplyChanges() instead + * @deprecated 4.1.0:5.0.0 Use recursivelyApplyChanges() instead * @param array $data * @param array $dest */ diff --git a/src/Control/SimpleResourceURLGenerator.php b/src/Control/SimpleResourceURLGenerator.php index b15ae6a04..620effa3d 100644 --- a/src/Control/SimpleResourceURLGenerator.php +++ b/src/Control/SimpleResourceURLGenerator.php @@ -151,7 +151,7 @@ class SimpleResourceURLGenerator implements ResourceURLGenerator /** * Resolve resource in the absence of a public/ folder * - * @deprecated 4.1.0...5.0.0 Will be removed in 5.0 when public/ folder becomes mandatory + * @deprecated 4.1.0:5.0.0 Will be removed in 5.0 when public/ folder becomes mandatory * @param string $relativePath * @return array List of [$exists, $absolutePath, $relativePath] */ diff --git a/src/Core/ClassInfo.php b/src/Core/ClassInfo.php index 3029b200f..e51bbe81d 100644 --- a/src/Core/ClassInfo.php +++ b/src/Core/ClassInfo.php @@ -155,7 +155,7 @@ class ClassInfo } /** - * @deprecated 4.0..5.0 + * @deprecated 4.0.0:5.0.0 * @param string $class * @return string */ @@ -368,7 +368,7 @@ class ClassInfo } /** - * @deprecated 4.0..5.0 + * @deprecated 4.0.0:5.0.0 */ public static function table_for_object_field($candidateClass, $fieldName) { diff --git a/src/Core/Extensible.php b/src/Core/Extensible.php index e7e9597aa..e23823d1c 100644 --- a/src/Core/Extensible.php +++ b/src/Core/Extensible.php @@ -108,7 +108,7 @@ trait Extensible } /** - * @deprecated 4.0..5.0 Extensions and methods are now lazy-loaded + * @deprecated 4.0.0:5.0.0 Extensions and methods are now lazy-loaded */ protected function constructExtensions() { diff --git a/src/Core/Manifest/Module.php b/src/Core/Manifest/Module.php index a78b7988c..c689037cc 100644 --- a/src/Core/Manifest/Module.php +++ b/src/Core/Manifest/Module.php @@ -11,7 +11,7 @@ use SilverStripe\Dev\Deprecation; class Module implements Serializable { /** - * @deprecated 4.1..5.0 Use Path::normalise() instead + * @deprecated 4.1.0:5.0.0 Use Path::normalise() instead */ const TRIM_CHARS = ' /\\'; @@ -207,7 +207,7 @@ class Module implements Serializable } /** - * @deprecated 4.0...5.0 Use getResource($path)->getRelativePath() instead + * @deprecated 4.0.0:5.0.0 Use getResource($path)->getRelativePath() instead * @param string $path * @return string */ @@ -220,7 +220,7 @@ class Module implements Serializable } /** - * @deprecated 4.0...5.0 Use ->getResource($path)->getPath() instead + * @deprecated 4.0.0:5.0.0 Use ->getResource($path)->getPath() instead * @param string $path * @return string */ @@ -233,7 +233,7 @@ class Module implements Serializable } /** - * @deprecated 4.0...5.0 Use ->getResource($path)->getURL() instead + * @deprecated 4.0.0:5.0.0 Use ->getResource($path)->getURL() instead * @param string $path * @return string */ @@ -246,7 +246,7 @@ class Module implements Serializable } /** - * @deprecated 4.0...5.0 Use ->getResource($path)->exists() instead + * @deprecated 4.0.0:5.0.0 Use ->getResource($path)->exists() instead * @param string $path * @return string */ diff --git a/src/Dev/FunctionalTest.php b/src/Dev/FunctionalTest.php index 29f787ebc..c07d755c2 100644 --- a/src/Dev/FunctionalTest.php +++ b/src/Dev/FunctionalTest.php @@ -45,7 +45,7 @@ class FunctionalTest extends SapphireTest implements TestOnly /** * Set this to true on your sub-class to use the draft site by default for every test in this class. * - * @deprecated 4.2..5.0 Use ?stage=Stage in your ->get() querystring requests instead + * @deprecated 4.2.0:5.0.0 Use ?stage=Stage in your ->get() querystring requests instead * @var bool */ protected static $use_draft_site = false; @@ -404,7 +404,7 @@ class FunctionalTest extends SapphireTest implements TestOnly * This is helpful if you're not testing publication functionality and don't want "stage management" cluttering * your test. * - * @deprecated 4.2..5.0 Use ?stage=Stage querystring arguments instead of useDraftSite + * @deprecated 4.2.0:5.0.0 Use ?stage=Stage querystring arguments instead of useDraftSite * @param bool $enabled toggle the use of the draft site */ public function useDraftSite($enabled = true) @@ -428,7 +428,7 @@ class FunctionalTest extends SapphireTest implements TestOnly } /** - * @deprecated 4.2..5.0 Use ?stage=Stage in your querystring arguments instead + * @deprecated 4.2.0:5.0.0 Use ?stage=Stage in your querystring arguments instead * @return bool */ public static function get_use_draft_site() diff --git a/src/Dev/Install/InstallEnvironmentAware.php b/src/Dev/Install/InstallEnvironmentAware.php index 2a603419b..8e500a82e 100644 --- a/src/Dev/Install/InstallEnvironmentAware.php +++ b/src/Dev/Install/InstallEnvironmentAware.php @@ -107,7 +107,7 @@ trait InstallEnvironmentAware { $base = $this->getBaseDir(); if (is_dir($base . 'mysite')) { - /** @deprecated 4.2..5.0 */ + /** @deprecated 4.2.0:5.0.0 */ return 'mysite'; } @@ -124,7 +124,7 @@ trait InstallEnvironmentAware { $projectDir = $this->getProjectDir(); if ($projectDir === 'mysite') { - /** @deprecated 4.2..5.0 */ + /** @deprecated 4.2.0:5.0.0 */ return $projectDir . DIRECTORY_SEPARATOR . 'code'; } diff --git a/src/Dev/SapphireTest.php b/src/Dev/SapphireTest.php index 56ba0c44b..8cd4b4f15 100644 --- a/src/Dev/SapphireTest.php +++ b/src/Dev/SapphireTest.php @@ -416,7 +416,7 @@ class SapphireTest extends PHPUnit_Framework_TestCase implements TestOnly } /** - * @deprecated 4.0..5.0 + * @deprecated 4.0.0:5.0.0 * @return FixtureFactory|false */ public function getFixtureFactory() @@ -429,7 +429,7 @@ class SapphireTest extends PHPUnit_Framework_TestCase implements TestOnly /** * Sets a new fixture factory - * @deprecated 4.0..5.0 + * @deprecated 4.0.0:5.0.0 * @param FixtureFactory $factory * @return $this */ @@ -504,7 +504,7 @@ class SapphireTest extends PHPUnit_Framework_TestCase implements TestOnly * Load a YAML fixture file into the database. * Once loaded, you can use idFromFixture() and objFromFixture() to get items from the fixture. * Doesn't clear existing fixtures. - * @deprecated 4.0...5.0 + * @deprecated 4.0.0:5.0.0 * * @param string $fixtureFile The location of the .yml fixture file, relative to the site base dir */ diff --git a/src/Forms/FieldList.php b/src/Forms/FieldList.php index 08c068c6d..99b634637 100644 --- a/src/Forms/FieldList.php +++ b/src/Forms/FieldList.php @@ -183,7 +183,7 @@ class FieldList extends ArrayList } /** - * @deprecated 4.1..5.0 Please use dataFields or saveableFields + * @deprecated 4.1.0:5.0.0 Please use dataFields or saveableFields * @param $list * @param bool $saveableOnly */ diff --git a/src/Forms/GridField/GridFieldVersionedState.php b/src/Forms/GridField/GridFieldVersionedState.php index 5f181d468..d60326303 100644 --- a/src/Forms/GridField/GridFieldVersionedState.php +++ b/src/Forms/GridField/GridFieldVersionedState.php @@ -11,7 +11,7 @@ if (!class_exists(VersionedGridFieldState::class)) { /** - * @deprecated 4.1..5.0 + * @deprecated 4.1.0:5.0.0 */ class GridFieldVersionedState extends VersionedGridFieldState { diff --git a/src/Forms/HTMLEditor/TinyMCEConfig.php b/src/Forms/HTMLEditor/TinyMCEConfig.php index b471e4eeb..9dbeb3ceb 100644 --- a/src/Forms/HTMLEditor/TinyMCEConfig.php +++ b/src/Forms/HTMLEditor/TinyMCEConfig.php @@ -827,7 +827,7 @@ class TinyMCEConfig extends HTMLEditorConfig } /** - * @deprecated 4.0..5.0 + * @deprecated 4.0.0:5.0.0 */ public function getTinyMCEPath() { @@ -837,7 +837,7 @@ class TinyMCEConfig extends HTMLEditorConfig /** * @return Module - * @deprecated 4.0..5.0 + * @deprecated 4.0.0:5.0.0 */ protected function getAdminModule() { diff --git a/src/Forms/HTMLEditor/TinyMCEGZIPGenerator.php b/src/Forms/HTMLEditor/TinyMCEGZIPGenerator.php index f8af41910..758153d18 100644 --- a/src/Forms/HTMLEditor/TinyMCEGZIPGenerator.php +++ b/src/Forms/HTMLEditor/TinyMCEGZIPGenerator.php @@ -11,7 +11,7 @@ use TinyMCE_Compressor; /** * Uses the default tiny_mc_gzip.php handler * - * @deprecated 4.0..5.0 + * @deprecated 4.0.0:5.0.0 */ class TinyMCEGZIPGenerator implements TinyMCEScriptGenerator { diff --git a/src/Forms/TreeDropdownField.php b/src/Forms/TreeDropdownField.php index f96379c75..5a4648b05 100644 --- a/src/Forms/TreeDropdownField.php +++ b/src/Forms/TreeDropdownField.php @@ -600,7 +600,7 @@ class TreeDropdownField extends FormField /** * HTML-encoded label for this node, including css classes and other markup. * - * @deprecated 4.0...5.0 Use setTitleField() + * @deprecated 4.0.0:5.0.0 Use setTitleField() * @param string $field * @return $this */ @@ -613,7 +613,7 @@ class TreeDropdownField extends FormField /** * HTML-encoded label for this node, including css classes and other markup. * - * @deprecated 4.0...5.0 Use getTitleField() + * @deprecated 4.0.0:5.0.0 Use getTitleField() * @return string */ public function getLabelField() diff --git a/src/ORM/Connect/DBSchemaManager.php b/src/ORM/Connect/DBSchemaManager.php index ae67258c1..38ef02fd6 100644 --- a/src/ORM/Connect/DBSchemaManager.php +++ b/src/ORM/Connect/DBSchemaManager.php @@ -57,7 +57,7 @@ abstract class DBSchemaManager /** * @param string - * @deprecated 4.0..5.0 + * @deprecated 4.0.0:5.0.0 */ public static function showTableNameWarning($table, $class) { diff --git a/src/ORM/DataObject.php b/src/ORM/DataObject.php index 928576fca..2bf117bfb 100644 --- a/src/ORM/DataObject.php +++ b/src/ORM/DataObject.php @@ -139,7 +139,7 @@ class DataObject extends ViewableData implements DataObjectInterface, i18nEntity private static $default_classname = null; /** - * @deprecated 4.0..5.0 + * @deprecated 4.0.0:5.0.0 * @var bool */ public $destroyed = false; @@ -498,7 +498,7 @@ class DataObject extends ViewableData implements DataObjectInterface, i18nEntity /** * Copies the many_many and belongs_many_many relations from one object to another instance of the name of object. * - * @deprecated 4.1...5.0 Use duplicateRelations() instead + * @deprecated 4.1.0:5.0.0 Use duplicateRelations() instead * @param DataObject $sourceObject the source object to duplicate from * @param DataObject $destinationObject the destination object to populate with the duplicated relations * @param bool|string $filter diff --git a/src/Security/LoginAttempt.php b/src/Security/LoginAttempt.php index 1a2b68939..69b448a49 100644 --- a/src/Security/LoginAttempt.php +++ b/src/Security/LoginAttempt.php @@ -15,7 +15,7 @@ use SilverStripe\ORM\DataObject; * complies with your privacy standards. We're logging * username and IP. * - * @property string $Email Email address used for login attempt. @deprecated 3.0...5.0 + * @property string $Email Email address used for login attempt. @deprecated 3.0.0:5.0.0 * @property string $EmailHashed sha1 hashed Email address used for login attempt * @property string $Status Status of the login attempt, either 'Success' or 'Failure' * @property string $IP IP address of user attempting to login diff --git a/src/Security/Member.php b/src/Security/Member.php index c90836728..5229866ce 100644 --- a/src/Security/Member.php +++ b/src/Security/Member.php @@ -282,7 +282,7 @@ class Member extends DataObject /** * Get the default admin record if it exists, or creates it otherwise if enabled * - * @deprecated 4.0.0...5.0.0 Use DefaultAdminService::findOrCreateDefaultAdmin() instead + * @deprecated 4.0.0:5.0.0 Use DefaultAdminService::findOrCreateDefaultAdmin() instead * @return Member */ public static function default_admin() @@ -294,7 +294,7 @@ class Member extends DataObject /** * Check if the passed password matches the stored one (if the member is not locked out). * - * @deprecated 4.0.0...5.0.0 Use Authenticator::checkPassword() instead + * @deprecated 4.0.0:5.0.0 Use Authenticator::checkPassword() instead * * @param string $password * @return ValidationResult diff --git a/src/Security/Security.php b/src/Security/Security.php index a6b533ded..e066988ac 100644 --- a/src/Security/Security.php +++ b/src/Security/Security.php @@ -1062,7 +1062,7 @@ class Security extends Controller implements TemplateGlobalProvider * * @return Member * - * @deprecated 4.0.0..5.0.0 Please use DefaultAdminService::findOrCreateDefaultAdmin() + * @deprecated 4.0.0:5.0.0 Please use DefaultAdminService::findOrCreateDefaultAdmin() */ public static function findAnAdministrator() { @@ -1075,7 +1075,7 @@ class Security extends Controller implements TemplateGlobalProvider /** * Flush the default admin credentials * - * @deprecated 4.0.0..5.0.0 Please use DefaultAdminService::clearDefaultAdmin() + * @deprecated 4.0.0:5.0.0 Please use DefaultAdminService::clearDefaultAdmin() */ public static function clear_default_admin() { @@ -1096,7 +1096,7 @@ class Security extends Controller implements TemplateGlobalProvider * @param string $password The password (in cleartext) * @return bool True if successfully set * - * @deprecated 4.0.0..5.0.0 Please use DefaultAdminService::setDefaultAdmin($username, $password) + * @deprecated 4.0.0:5.0.0 Please use DefaultAdminService::setDefaultAdmin($username, $password) */ public static function setDefaultAdmin($username, $password) { @@ -1114,7 +1114,7 @@ class Security extends Controller implements TemplateGlobalProvider * @param string $password * @return bool * - * @deprecated 4.0.0..5.0.0 Use DefaultAdminService::isDefaultAdminCredentials() instead + * @deprecated 4.0.0:5.0.0 Use DefaultAdminService::isDefaultAdminCredentials() instead */ public static function check_default_admin($username, $password) { @@ -1127,7 +1127,7 @@ class Security extends Controller implements TemplateGlobalProvider /** * Check that the default admin account has been set. * - * @deprecated 4.0.0..5.0.0 Use DefaultAdminService::hasDefaultAdmin() instead + * @deprecated 4.0.0:5.0.0 Use DefaultAdminService::hasDefaultAdmin() instead */ public static function has_default_admin() { @@ -1139,7 +1139,7 @@ class Security extends Controller implements TemplateGlobalProvider /** * Get default admin username * - * @deprecated 4.0.0..5.0.0 Use DefaultAdminService::getDefaultAdminUsername() + * @deprecated 4.0.0:5.0.0 Use DefaultAdminService::getDefaultAdminUsername() * @return string */ public static function default_admin_username() @@ -1152,7 +1152,7 @@ class Security extends Controller implements TemplateGlobalProvider /** * Get default admin password * - * @deprecated 4.0.0..5.0.0 Use DefaultAdminService::getDefaultAdminPassword() + * @deprecated 4.0.0:5.0.0 Use DefaultAdminService::getDefaultAdminPassword() * @return string */ public static function default_admin_password() diff --git a/src/View/Requirements.php b/src/View/Requirements.php index 6a76d756a..ff505b15f 100644 --- a/src/View/Requirements.php +++ b/src/View/Requirements.php @@ -331,7 +331,7 @@ class Requirements implements Flushable * 'framework/javascript/lang' * @param bool $return Return all relative file paths rather than including them in * requirements - * @param bool $langOnly @deprecated 4.1...5.0 as i18n.js should be included manually in your project + * @param bool $langOnly @deprecated 4.1.0:5.0.0 as i18n.js should be included manually in your project * * @return array */ diff --git a/src/View/Requirements_Backend.php b/src/View/Requirements_Backend.php index fe5bfb8a9..5286ed1f4 100644 --- a/src/View/Requirements_Backend.php +++ b/src/View/Requirements_Backend.php @@ -222,7 +222,7 @@ class Requirements_Backend /** * Gets the minification service for this backend * - * @deprecated 4.0..5.0 + * @deprecated 4.0.0:5.0.0 * @return Requirements_Minifier */ public function getMinifier() diff --git a/src/View/Requirements_Minifier.php b/src/View/Requirements_Minifier.php index 5fc16c413..cf93df033 100644 --- a/src/View/Requirements_Minifier.php +++ b/src/View/Requirements_Minifier.php @@ -5,7 +5,7 @@ namespace SilverStripe\View; /** * Provides an abstract interface for minifying content * - * @deprecated 4.0..5.0 + * @deprecated 4.0.0:5.0.0 */ interface Requirements_Minifier { diff --git a/src/View/SSViewer.php b/src/View/SSViewer.php index a8fc2f4b5..ca2388a39 100644 --- a/src/View/SSViewer.php +++ b/src/View/SSViewer.php @@ -74,7 +74,7 @@ class SSViewer implements Flushable * The used "theme", which usually consists of templates, images and stylesheets. * Only used when {@link $theme_enabled} is set to TRUE, and $themes is empty * - * @deprecated 4.0..5.0 + * @deprecated 4.0.0:5.0.0 * @config * @var string */ diff --git a/src/View/ViewableData.php b/src/View/ViewableData.php index 7c4d26531..8bd4ab290 100644 --- a/src/View/ViewableData.php +++ b/src/View/ViewableData.php @@ -611,7 +611,7 @@ class ViewableData implements IteratorAggregate * project directory. * * @return string URL to the current theme - * @deprecated 4.0.0..5.0.0 Use $resourcePath or $resourceURL template helpers instead + * @deprecated 4.0.0:5.0.0 Use $resourcePath or $resourceURL template helpers instead */ public function ThemeDir() { diff --git a/src/conf/ConfigureFromEnv.php b/src/conf/ConfigureFromEnv.php index 8a6fd4a90..6258c4e9b 100644 --- a/src/conf/ConfigureFromEnv.php +++ b/src/conf/ConfigureFromEnv.php @@ -1,7 +1,7 @@