Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@

abstract class BookmarkServiceDecorator implements BookmarkService
{
/** @var \Ibexa\Contracts\Core\Repository\BookmarkService */
protected $innerService;
protected BookmarkService $innerService;

public function __construct(BookmarkService $innerService)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@

abstract class ContentServiceDecorator implements ContentService
{
/** @var \Ibexa\Contracts\Core\Repository\ContentService */
protected $innerService;
protected ContentService $innerService;

public function __construct(ContentService $innerService)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@

abstract class ContentTypeServiceDecorator implements ContentTypeService
{
/** @var \Ibexa\Contracts\Core\Repository\ContentTypeService */
protected $innerService;
protected ContentTypeService $innerService;

public function __construct(ContentTypeService $innerService)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@

abstract class FieldTypeServiceDecorator implements FieldTypeService
{
/** @var \Ibexa\Contracts\Core\Repository\FieldTypeService */
protected $innerService;
protected FieldTypeService $innerService;

public function __construct(FieldTypeService $innerService)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@

abstract class LanguageServiceDecorator implements LanguageService
{
/** @var \Ibexa\Contracts\Core\Repository\LanguageService */
protected $innerService;
protected LanguageService $innerService;

public function __construct(LanguageService $innerService)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@

abstract class LocationServiceDecorator implements LocationService
{
/** @var \Ibexa\Contracts\Core\Repository\LocationService */
protected $innerService;
protected LocationService $innerService;

public function __construct(LocationService $innerService)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@

abstract class NotificationServiceDecorator implements NotificationService
{
/** @var \Ibexa\Contracts\Core\Repository\NotificationService */
protected $innerService;
protected NotificationService $innerService;

public function __construct(NotificationService $innerService)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@

abstract class ObjectStateServiceDecorator implements ObjectStateService
{
/** @var \Ibexa\Contracts\Core\Repository\ObjectStateService */
protected $innerService;
protected ObjectStateService $innerService;

public function __construct(ObjectStateService $innerService)
{
Expand Down
7 changes: 1 addition & 6 deletions src/contracts/Repository/Decorator/RoleServiceDecorator.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
<?php

/**
* @copyright Copyright (C) Ibexa AS. All rights reserved.
* @license For full copyright and license information view LICENSE file distributed with this source code.
*/
/**
* @copyright Copyright (C) Ibexa AS. All rights reserved.
* @license For full copyright and license information view LICENSE file distributed with this source code.
Expand All @@ -29,8 +25,7 @@

abstract class RoleServiceDecorator implements RoleService
{
/** @var \Ibexa\Contracts\Core\Repository\RoleService */
protected $innerService;
protected RoleService $innerService;

public function __construct(RoleService $innerService)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@

abstract class SearchServiceDecorator implements SearchService
{
/** @var \Ibexa\Contracts\Core\Repository\SearchService */
protected $innerService;
protected SearchService $innerService;

public function __construct(SearchService $innerService)
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
<?php

/**
* @copyright Copyright (C) Ibexa AS. All rights reserved.
* @license For full copyright and license information view LICENSE file distributed with this source code.
*/
/**
* @copyright Copyright (C) Ibexa AS. All rights reserved.
* @license For full copyright and license information view LICENSE file distributed with this source code.
Expand All @@ -21,8 +17,7 @@

abstract class SectionServiceDecorator implements SectionService
{
/** @var \Ibexa\Contracts\Core\Repository\SectionService */
protected $innerService;
protected SectionService $innerService;

public function __construct(SectionService $innerService)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@

abstract class SettingServiceDecorator implements SettingService
{
/** @var \Ibexa\Contracts\Core\Repository\SettingService */
protected $innerService;
protected SettingService $innerService;

public function __construct(
SettingService $innerService
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@

abstract class TranslationServiceDecorator implements TranslationService
{
/** @var \Ibexa\Contracts\Core\Repository\TranslationService */
protected $innerService;
protected TranslationService $innerService;

public function __construct(TranslationService $innerService)
{
Expand Down
3 changes: 1 addition & 2 deletions src/contracts/Repository/Decorator/TrashServiceDecorator.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@

abstract class TrashServiceDecorator implements TrashService
{
/** @var \Ibexa\Contracts\Core\Repository\TrashService */
protected $innerService;
protected TrashService $innerService;

public function __construct(TrashService $innerService)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@

abstract class URLAliasServiceDecorator implements URLAliasService
{
/** @var \Ibexa\Contracts\Core\Repository\URLAliasService */
protected $innerService;
protected URLAliasService $innerService;

public function __construct(URLAliasService $innerService)
{
Expand Down
3 changes: 1 addition & 2 deletions src/contracts/Repository/Decorator/URLServiceDecorator.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@

abstract class URLServiceDecorator implements URLService
{
/** @var \Ibexa\Contracts\Core\Repository\URLService */
protected $innerService;
protected URLService $innerService;

public function __construct(URLService $innerService)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@

abstract class URLWildcardServiceDecorator implements URLWildcardService
{
/** @var \Ibexa\Contracts\Core\Repository\URLWildcardService */
protected $innerService;
protected URLWildcardService $innerService;

public function __construct(URLWildcardService $innerService)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@

abstract class UserPreferenceServiceDecorator implements UserPreferenceService
{
/** @var \Ibexa\Contracts\Core\Repository\UserPreferenceService */
protected $innerService;
protected UserPreferenceService $innerService;

public function __construct(UserPreferenceService $innerService)
{
Expand Down
7 changes: 1 addition & 6 deletions src/contracts/Repository/Decorator/UserServiceDecorator.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
<?php

/**
* @copyright Copyright (C) Ibexa AS. All rights reserved.
* @license For full copyright and license information view LICENSE file distributed with this source code.
*/
/**
* @copyright Copyright (C) Ibexa AS. All rights reserved.
* @license For full copyright and license information view LICENSE file distributed with this source code.
Expand All @@ -27,8 +23,7 @@

abstract class UserServiceDecorator implements UserService
{
/** @var \Ibexa\Contracts\Core\Repository\UserService */
protected $innerService;
protected UserService $innerService;

public function __construct(UserService $innerService)
{
Expand Down
Loading