Skip to content

Commit

Permalink
Added declaring strict types.
Browse files Browse the repository at this point in the history
  • Loading branch information
mateuszdebinski committed Jul 25, 2024
1 parent 472b69b commit 04c4bac
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
'ezcontentobject_attribute_sort_key_int' => 0,
'ezcontentobject_attribute_sort_key_string' => 'new test article (2)',
'ezcontentobject_tree_main_node_id' => 228,
'ezcontentclass_identifier' => 'article',
'content_type_identifier' => 'article',
],
1 => [
'ezcontentobject_id' => 226,
Expand Down Expand Up @@ -73,7 +73,7 @@
'ezcontentobject_attribute_sort_key_string' => 'something',
'ezcontentobject_tree_main_node_id' => 228,
'ezcontentobject_is_hidden' => 0,
'ezcontentclass_identifier' => 'article',
'content_type_identifier' => 'article',
],
2 => [
'ezcontentobject_id' => 226,
Expand Down Expand Up @@ -110,7 +110,7 @@
'ezcontentobject_attribute_sort_key_string' => '',
'ezcontentobject_tree_main_node_id' => 228,
'ezcontentobject_is_hidden' => 0,
'ezcontentclass_identifier' => 'article',
'content_type_identifier' => 'article',
],
3 => [
'ezcontentobject_id' => 226,
Expand Down Expand Up @@ -145,7 +145,7 @@
'ezcontentobject_attribute_sort_key_string' => '',
'ezcontentobject_tree_main_node_id' => 228,
'ezcontentobject_is_hidden' => 0,
'ezcontentclass_identifier' => 'article',
'content_type_identifier' => 'article',
],
4 => [
'ezcontentobject_id' => 226,
Expand Down Expand Up @@ -182,7 +182,7 @@
'ezcontentobject_attribute_sort_key_string' => '',
'ezcontentobject_tree_main_node_id' => 228,
'ezcontentobject_is_hidden' => 0,
'ezcontentclass_identifier' => 'article',
'content_type_identifier' => 'article',
],
5 => [
'ezcontentobject_id' => 226,
Expand Down Expand Up @@ -217,7 +217,7 @@
'ezcontentobject_attribute_sort_key_string' => '',
'ezcontentobject_tree_main_node_id' => 228,
'ezcontentobject_is_hidden' => 0,
'ezcontentclass_identifier' => 'article',
'content_type_identifier' => 'article',
],
6 => [
'ezcontentobject_id' => 226,
Expand Down Expand Up @@ -252,7 +252,7 @@
'ezcontentobject_attribute_sort_key_string' => '',
'ezcontentobject_tree_main_node_id' => 228,
'ezcontentobject_is_hidden' => 0,
'ezcontentclass_identifier' => 'article',
'content_type_identifier' => 'article',
],
7 => [
'ezcontentobject_id' => 226,
Expand Down Expand Up @@ -287,6 +287,7 @@
'ezcontentobject_attribute_sort_key_string' => '',
'ezcontentobject_tree_main_node_id' => 228,
'ezcontentobject_is_hidden' => 0,
'content_type_identifier' => 'article',
],
8 => [
'ezcontentobject_id' => 226,
Expand Down Expand Up @@ -321,6 +322,6 @@
'ezcontentobject_attribute_sort_key_string' => '',
'ezcontentobject_tree_main_node_id' => 228,
'ezcontentobject_is_hidden' => 0,
'ezcontentclass_identifier' => 'article',
'content_type_identifier' => 'article',
],
];
2 changes: 2 additions & 0 deletions tests/lib/Persistence/ValueObject/ContentInfoTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
* @copyright Copyright (C) Ibexa AS. All rights reserved.
* @license For full copyright and license information view LICENSE file distributed with this source code.
*/
declare(strict_types=1);

namespace Ibexa\Tests\Core\Persistence\ValueObject;

use Ibexa\Contracts\Core\Persistence\Content\ContentInfo;
Expand Down

0 comments on commit 04c4bac

Please sign in to comment.