Skip to content

Commit

Permalink
TASK: Apply StyleCI adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
markusguenther committed Apr 23, 2023
1 parent adacb82 commit e5d4351
Show file tree
Hide file tree
Showing 18 changed files with 2 additions and 20 deletions.
1 change: 0 additions & 1 deletion Classes/Aspects/AugmentationAspect.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
*/
class AugmentationAspect
{

/**
* @Flow\Inject
* @var AuthorizationService
Expand Down
1 change: 0 additions & 1 deletion Classes/Domain/Model/ChangeInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
*/
interface ChangeInterface
{

/**
* Set the subject
*
Expand Down
1 change: 0 additions & 1 deletion Classes/Domain/Model/Changes/AbstractStructuralChange.php
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,6 @@ protected function finish(NodeInterface $node)
$this->updateWorkspaceInfo();

if ($node->getNodeType()->isOfType('Neos.Neos:Content') && ($this->getParentDomAddress() || $this->getSiblingDomAddress())) {

// we can ONLY render out of band if:
// 1) the parent of our new (or copied or moved) node is a ContentCollection; so we can directly update an element of this content collection
if ($node->getParent()->getNodeType()->isOfType('Neos.Neos:ContentCollection') &&
Expand Down
1 change: 0 additions & 1 deletion Classes/Domain/Model/Changes/CopyAfter.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

class CopyAfter extends AbstractCopy
{

/**
* "Subject" is the to-be-copied node; the "sibling" node is the node after which the "Subject" should be copied.
*
Expand Down
1 change: 0 additions & 1 deletion Classes/Domain/Model/Changes/CopyInto.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

class CopyInto extends AbstractCopy
{

/**
* @var string
*/
Expand Down
1 change: 0 additions & 1 deletion Classes/Domain/Model/Changes/Create.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

class Create extends AbstractCreate
{

/**
* @param string $parentContextPath
*/
Expand Down
1 change: 0 additions & 1 deletion Classes/Domain/Model/Changes/MoveBefore.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@

class MoveBefore extends AbstractMove
{

/**
* "Subject" is the to-be-moved node; the "sibling" node is the node after which the "Subject" should be copied.
*
Expand Down
1 change: 0 additions & 1 deletion Classes/Domain/Model/Changes/MoveInto.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

class MoveInto extends AbstractMove
{

/**
* @var string
*/
Expand Down
1 change: 0 additions & 1 deletion Classes/Domain/Model/Changes/Property.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
*/
class Property extends AbstractChange
{

/**
* @Flow\Inject
* @var NodePropertyConversionService
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

class UpdateNodePath extends AbstractFeedback
{

/**
* @var string
*/
Expand Down
1 change: 0 additions & 1 deletion Classes/Domain/Model/ReferencingChangeInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
*/
interface ReferencingChangeInterface extends ChangeInterface
{

/**
* Set the reference
*
Expand Down
1 change: 0 additions & 1 deletion Classes/Domain/Service/ConfigurationRenderingService.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
*/
class ConfigurationRenderingService
{

/**
* @Flow\Inject(lazy=false)
* @var CompilingEvaluator
Expand Down
1 change: 0 additions & 1 deletion Classes/Domain/Service/NodePropertyConversionService.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
*/
class NodePropertyConversionService
{

/**
* @Flow\Inject
* @var ObjectManagerInterface
Expand Down
5 changes: 2 additions & 3 deletions Classes/Domain/Service/StyleAndJavascriptInclusionService.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
*/
class StyleAndJavascriptInclusionService
{

/**
* @Flow\Inject
* @var ResourceManager
Expand Down Expand Up @@ -114,9 +113,9 @@ protected function build(array $resourceArrayToSort, \Closure $builderForLine)
*/
private function htmlAttributesArrayToString(array $attributes): string
{
return join(' ', array_filter(array_map(function($key, $value) {
return join(' ', array_filter(array_map(function ($key, $value) {
if (is_bool($value)) {
return $value ? htmlspecialchars($key) : null;
return $value ? htmlspecialchars($key) : null;
}
return htmlspecialchars($key) . '="' . htmlspecialchars($value) . '"';
}, array_keys($attributes), $attributes)));
Expand Down
1 change: 0 additions & 1 deletion Classes/Domain/Service/UserLocaleService.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@

class UserLocaleService
{

/**
* @Flow\Inject
* @var I18nService
Expand Down
1 change: 0 additions & 1 deletion Classes/Fusion/RenderConfigurationImplementation.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@

class RenderConfigurationImplementation extends AbstractFusionObject
{

/**
* @Flow\Inject
* @var ConfigurationRenderingService
Expand Down
1 change: 0 additions & 1 deletion Classes/Service/NodePolicyService.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
*/
class NodePolicyService
{

/**
* @Flow\Inject
* @var PrivilegeManagerInterface
Expand Down
1 change: 0 additions & 1 deletion Classes/Service/NodePropertyValidationService.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
*/
class NodePropertyValidationService
{

/**
* @Flow\Inject
* @var LoggerInterface
Expand Down

0 comments on commit e5d4351

Please sign in to comment.