Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IBX-1853: Used rebranded Ibexa name in codebase #25

Merged
merged 2 commits into from
Feb 3, 2022
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
2 changes: 1 addition & 1 deletion bootstrap.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/**
* @copyright Copyright (C) eZ Systems AS. All rights reserved.
* @copyright Copyright (C) Ibexa AS. All rights reserved.
* @license For full copyright and license information view LICENSE file distributed with this source code.
*/
require_once __DIR__ . '/vendor/autoload.php';
2 changes: 1 addition & 1 deletion doc/specifications/content_edit.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ The Form, `ContentEditType`, uses a `ContentUpdateData` object.
## Future development

### Version conflits
[Version conflicts](https://jira.ez.no/browse/EZP-25465) must be handled. There are discussions
[Version conflicts](https://issues.ibexa.co/browse/EZP-25465) must be handled. There are discussions
about moving this logic down to the API. On the other hand, it would be fairly simple to implement
that logic in this controller.

Expand Down
2 changes: 1 addition & 1 deletion src/lib/Data/Mapper/ContentCreateMapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
class ContentCreateMapper implements FormDataMapperInterface
{
/**
* Maps a ValueObject from eZ content repository to a data usable as underlying form data (e.g. create/update struct).
* Maps a ValueObject from Ibexa content repository to a data usable as underlying form data (e.g. create/update struct).
*
* @param \Ibexa\Contracts\Core\Repository\Values\ContentType\ContentType|\Ibexa\Contracts\Core\Repository\Values\ValueObject $contentType
* @param array $params
Expand Down
2 changes: 1 addition & 1 deletion src/lib/Data/Mapper/ContentUpdateMapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
class ContentUpdateMapper implements FormDataMapperInterface
{
/**
* Maps a ValueObject from eZ content repository to a data usable as underlying form data (e.g. create/update struct).
* Maps a ValueObject from Ibexa content repository to a data usable as underlying form data (e.g. create/update struct).
*
* @param \Ibexa\Contracts\Core\Repository\Values\Content\Content|\Ibexa\Contracts\Core\Repository\Values\ValueObject $contentDraft
* @param array $params
Expand Down
4 changes: 2 additions & 2 deletions src/lib/Data/Mapper/FormDataMapperInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
use Ibexa\Contracts\Core\Repository\Values\ValueObject;

/**
* A FormDataMapper will convert a value object from eZ content repository to a usable form data.
* A FormDataMapper will convert a value object from Ibexa content repository to a usable form data.
*/
interface FormDataMapperInterface
{
/**
* Maps a ValueObject from eZ content repository to a data usable as underlying form data (e.g. create/update struct).
* Maps a ValueObject from Ibexa content repository to a data usable as underlying form data (e.g. create/update struct).
*
* @param \Ibexa\Contracts\Core\Repository\Values\ValueObject $repositoryValueObject
* @param array $params
Expand Down
2 changes: 1 addition & 1 deletion src/lib/Data/Mapper/UserUpdateMapper.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
class UserUpdateMapper
{
/**
* Maps a ValueObject from eZ content repository to a data usable as underlying form data (e.g. create/update struct).
* Maps a ValueObject from Ibexa content repository to a data usable as underlying form data (e.g. create/update struct).
*
* @param \Ibexa\Contracts\Core\Repository\Values\User\User $user
* @param \Ibexa\Contracts\Core\Repository\Values\ContentType\ContentType $contentType
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public function dataProviderForValidateNotSupportedValueType(): array

public function testValid()
{
$userAccount = new UserAccountFieldData('user', 'pass', 'user@ez.no');
$userAccount = new UserAccountFieldData('user', 'pass', 'user@ibexa.co');
$contentType = $this->createMock(ContentType::class);

$this->userService
Expand All @@ -91,7 +91,7 @@ public function testValid()
public function testInvalid()
{
$contentType = $this->createMock(ContentType::class);
$userAccount = new UserAccountFieldData('user', 'pass', 'user@ez.no');
$userAccount = new UserAccountFieldData('user', 'pass', 'user@ibexa.co');
$errorParameter = 'foo';
$errorMessage = 'error';

Expand Down