Skip to content

Commit

Permalink
Apply php-cs-fixer changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mattamon authored and github-actions[bot] committed Apr 12, 2024
1 parent 82ab961 commit e0cb8ac
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 5 deletions.
18 changes: 15 additions & 3 deletions src/Dto/DataObject.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
<?php

/**
* Pimcore
*
* This source file is available under two different licenses:
* - GNU General Public License version 3 (GPLv3)
* - Pimcore Commercial License (PCL)
* Full copyright and license information is available in
* LICENSE.md which is distributed with this source code.
*
* @copyright Copyright (c) Pimcore GmbH (http://www.pimcore.org)
* @license http://www.pimcore.org/license GPLv3 and PCL
*/

namespace Pimcore\Bundle\StudioApiBundle\Dto;

use OpenApi\Attributes\Property;
Expand All @@ -14,13 +27,12 @@
public function __construct(
#[Property(description: 'ID', type: 'integer', example: 83)]
private int $id
)
{
) {

}

public function getId(): int
{
return $this->id;
}
}
}
3 changes: 1 addition & 2 deletions src/Factory/QueryFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@
public function __construct(
private AssetQueryProviderInterface $assetQueryProvider,
private DataObjectQueryProviderInterface $dataObjectQueryProvider
)
{
) {

}

Expand Down

0 comments on commit e0cb8ac

Please sign in to comment.