Skip to content
Snippets Groups Projects
Commit 0b3eb366 authored by Alexander Schnitzler's avatar Alexander Schnitzler Committed by Tymoteusz Motylewski
Browse files

[FEATURE] Replace @lazy with @Extbase\ORM\Lazy

This patch introduces the "TYPO3\CMS\Extbase\Annotation\ORM\Lazy"
annotation that replaces the @lazy annotation which is
deprecated from now on.

Releases: master
Resolves: #83078
Change-Id: Ic90ee3acf220288824d506c8ed63979e1236e583
Reviewed-on: https://review.typo3.org/54747


Tested-by: default avatarTYPO3com <no-reply@typo3.com>
Reviewed-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Tested-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Reviewed-by: default avatarTymoteusz Motylewski <t.motylewski@gmail.com>
Tested-by: default avatarTymoteusz Motylewski <t.motylewski@gmail.com>
parent f2a97547
Branches
Tags
No related merge requests found
Showing
with 209 additions and 1 deletion
.. include:: ../../Includes.txt
===============================================================================
Deprecation: #83078 - Replace @lazy with @TYPO3\CMS\Extbase\Annotation\ORM\Lazy
===============================================================================
See :issue:`83078`
Description
===========
The `@lazy` annotation has been deprecated and must be replaced with the doctrine annotation `@TYPO3\CMS\Extbase\Annotation\ORM\Lazy`.
Impact
======
From version 9.0 on, `@lazy` is deprecated and will be removed in version 10.
Affected Installations
======================
All extensions that use `@lazy`
Migration
=========
Use `@TYPO3\CMS\Extbase\Annotation\ORM\Lazy` instead.
.. index:: PHP-API, ext:extbase, FullyScanned
.. include:: ../../Includes.txt
===========================================================================
Feature: #83078 - Replace @lazy with @TYPO3\CMS\Extbase\Annotation\ORM\Lazy
===========================================================================
See :issue:`83078`
Description
===========
As a successor to the `@lazy` annotation, the doctrine annotation `@TYPO3\CMS\Extbase\Annotation\ORM\Lazy` has been introduced.
Example:
.. code-block:: php
/**
* @TYPO3\CMS\Extbase\Annotation\ORM\Lazy
* @var Foo
*/
public $property;
Doctrine annotations are actual defined classes, therefore you can also use the annotation with a use statement.
Example:
.. code-block:: php
use TYPO3\CMS\Extbase\Annotation\ORM\Lazy;
.. code-block:: php
/**
* @Lazy
* @var Foo
*/
public $property;
Used annotations can also be aliased which the core will most likely be using a lot in the future.
Example:
.. code-block:: php
use TYPO3\CMS\Extbase\Annotation as Extbase;
.. code-block:: php
/**
* @Extbase\ORM\Lazy
* @var Foo
*/
public $property;
Impact
======
In 9.x there is no actual impact. Both the simple `@lazy` and `@TYPO3\CMS\Extbase\Annotation\ORM\Lazy` can be used side by side. However, `@lazy` is deprecated in 9.x and will be removed in version 10.
.. index:: PHP-API, ext:extbase, FullyScanned
<?php
declare(strict_types=1);
namespace TYPO3\CMS\Extbase\Annotation\ORM;
/*
* This file is part of the TYPO3 CMS project.
*
* It is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, either version 2
* of the License, or any later version.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*
* The TYPO3 project - inspiring people to share!
*/
/**
* @Annotation
* @Target({"PROPERTY"})
*/
class Lazy
{
}
......@@ -18,6 +18,7 @@ use Doctrine\Common\Annotations\AnnotationReader;
use TYPO3\CMS\Core\SingletonInterface;
use TYPO3\CMS\Core\Utility\ClassNamingUtility;
use TYPO3\CMS\Extbase\Annotation\Inject;
use TYPO3\CMS\Extbase\Annotation\ORM\Lazy;
use TYPO3\CMS\Extbase\DomainObject\AbstractEntity;
use TYPO3\CMS\Extbase\DomainObject\AbstractValueObject;
use TYPO3\CMS\Extbase\Utility\TypeHandlingUtility;
......@@ -170,12 +171,24 @@ class ClassSchema
}
$this->properties[$propertyName]['annotations']['inject'] = false;
$this->properties[$propertyName]['annotations']['lazy'] = $docCommentParser->isTaggedWith('lazy');
$this->properties[$propertyName]['annotations']['lazy'] = false;
$this->properties[$propertyName]['annotations']['transient'] = $docCommentParser->isTaggedWith('transient');
$this->properties[$propertyName]['annotations']['type'] = null;
$this->properties[$propertyName]['annotations']['cascade'] = null;
$this->properties[$propertyName]['annotations']['dependency'] = null;
if (($annotation = $annotationReader->getPropertyAnnotation($reflectionProperty, Lazy::class)) instanceof Lazy) {
$this->properties[$propertyName]['annotations']['lazy'] = true;
}
if ($docCommentParser->isTaggedWith('lazy')) {
$this->properties[$propertyName]['annotations']['lazy'] = true;
trigger_error(
'Tagging properties with @lazy is deprecated and will be removed in TYPO3 v10.0.',
E_USER_DEPRECATED
);
}
if ($propertyName !== 'settings'
&& ($annotation = $annotationReader->getPropertyAnnotation($reflectionProperty, Inject::class)) instanceof Inject
) {
......
......@@ -178,6 +178,12 @@ class ClassSchemaTest extends \TYPO3\TestingFramework\Core\Unit\UnitTestCase
static::assertArrayHasKey('injectFoo', $injectMethods);
}
public function testClassSchemaDetectsPropertiesWithLazyAnnotation()
{
$classSchema = new ClassSchema(Fixture\DummyClassWithLazyDoctrineAnnotation::class);
static::assertTrue($classSchema->getProperty('propertyWithLazyAnnotation')['annotations']['lazy']);
}
public function testClassSchemaDetectsStaticMethods()
{
$classSchema = new ClassSchema(Fixture\DummyClassWithAllTypesOfMethods::class);
......
<?php
declare(strict_types=1);
namespace TYPO3\CMS\Extbase\Tests\Unit\Reflection\Fixture;
/*
* This file is part of the TYPO3 CMS project.
*
* It is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, either version 2
* of the License, or any later version.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*
* The TYPO3 project - inspiring people to share!
*/
use TYPO3\CMS\Extbase\Annotation as Extbase;
/**
* Fixture class with @TYPO3\CMS\Extbase\Annotation\ORM\Lazy annotation
*/
class DummyClassWithLazyDoctrineAnnotation
{
/**
* @Extbase\ORM\Lazy
*/
public $propertyWithLazyAnnotation;
}
......@@ -32,4 +32,10 @@ class ClassSchemaTest extends \TYPO3\TestingFramework\Core\Unit\UnitTestCase
$injectProperties = $classSchema->getInjectProperties();
static::assertArrayHasKey('propertyWithInjectAnnotation', $injectProperties);
}
public function testClassSchemaDetectsLazyProperties()
{
$classSchema = new ClassSchema(Fixture\DummyClassWithLazyProperty::class);
static::assertTrue($classSchema->getProperty('propertyWithLazyAnnotation')['annotations']['lazy']);
}
}
<?php
declare(strict_types=1);
namespace TYPO3\CMS\Extbase\Tests\UnitDeprecated\Reflection\Fixture;
/*
* This file is part of the TYPO3 CMS project.
*
* It is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, either version 2
* of the License, or any later version.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*
* The TYPO3 project - inspiring people to share!
*/
/**
* Dummy class with @lazy annotation
*/
class DummyClassWithLazyProperty
{
/**
* @lazy
*/
public $propertyWithLazyAnnotation;
}
......@@ -6,4 +6,10 @@ return [
'Deprecation-82869-ReplaceInjectWithTYPO3CMSExtbaseAnnotationInject.rst',
],
],
'@lazy' => [
'restFiles' => [
'Feature-83078-ReplaceLazyWithTYPO3CMSExtbaseAnnotationORMLazy.rst',
'Deprecation-83078-ReplaceLazyWithTYPO3CMSExtbaseAnnotationORMLazy.rst',
],
],
];
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment