Skip to content

Commit

Permalink
IBX-1853: Used rebranded Ibexa name in codebase (#25)
Browse files Browse the repository at this point in the history
* IBX-1853: Used rebranded Ibexa name in codebase

* fix: Code Review
  • Loading branch information
Nattfarinn authored Feb 3, 2022
1 parent ee0aae7 commit f1142ee
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
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

0 comments on commit f1142ee

Please sign in to comment.