Skip to content

Commit

Permalink
TASK: Fix errors from 9.0 downmerge
Browse files Browse the repository at this point in the history
  • Loading branch information
robertlemke committed Jun 14, 2024
1 parent 5d2a01e commit 58326ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 14 deletions.
1 change: 0 additions & 1 deletion Classes/Aop/Builder/ProxyClassBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
use Neos\Flow\Aop\AspectContainer;
use Neos\Flow\Aop\Exception;
use Neos\Flow\Aop\Exception\InvalidPointcutExpressionException;
use Neos\Flow\Aop\Exception\InvalidTargetClassException;
use Neos\Flow\Aop\Exception\VoidImplementationException;
use Neos\Flow\Aop\Pointcut\Pointcut;
use Neos\Flow\Aop\Pointcut\PointcutExpressionParser;
Expand Down
15 changes: 2 additions & 13 deletions Classes/Cache/CacheFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,22 +48,11 @@ class CacheFactory extends \Neos\Cache\CacheFactory
*/
protected $environmentConfiguration;

/**
* @param CacheManager $cacheManager
*
* @Flow\Autowiring (enabled=false)
*/
public function injectCacheManager(CacheManager $cacheManager): void
{
$this->cacheManager = $cacheManager;
}

/**
* @param EnvironmentConfiguration $environmentConfiguration
*
* @Flow\Autowiring (enabled=false)
* @Flow\Autowiring(enabled=false)
*/
public function injectEnvironmentConfiguration(EnvironmentConfiguration $environmentConfiguration): void
public function injectEnvironmentConfiguration(EnvironmentConfiguration $environmentConfiguration)
{
$this->environmentConfiguration = $environmentConfiguration;
}
Expand Down

0 comments on commit 58326ea

Please sign in to comment.