Skip to content

Commit

Permalink
Namespace silent issue fix on ContentType manager
Browse files Browse the repository at this point in the history
  • Loading branch information
Plopix committed Oct 28, 2015
1 parent 8af83b4 commit 38b9d54
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Core/Manager/eZ/Content.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
use eZ\Publish\API\Repository\ContentTypeService;
use eZ\Publish\API\Repository\LocationService;
use eZ\Publish\API\Repository\Values\Content\Content as ValueContent;
use eZ\Publish\API\Repository\Values\ContentType\ContentType;
use eZ\Publish\API\Repository\Values\ContentType\ContentType as eZContentType;
use eZ\Publish\API\Repository\Values\ValueObject;
use eZ\Publish\Core\Repository\Values\ContentType\FieldDefinition;
use eZ\Publish\API\Repository\Values\Content\ContentUpdateStruct;
Expand Down Expand Up @@ -216,11 +216,11 @@ protected function publishVersion( ValueContent $draft, $options = [] )
/**
* Autofill the Struct with the available field in $data
*
* @param ContentType $contentType
* @param eZContentType $contentType
* @param ValueObject $contentStruct
* @param array $data
*/
protected function autoFillStruct( ContentType $contentType, ValueObject $contentStruct, $data )
protected function autoFillStruct( eZContentType $contentType, ValueObject $contentStruct, $data )
{
/** @var ContentUpdateStruct|ContentUpdateStruct $contentStruct */

Expand Down

0 comments on commit 38b9d54

Please sign in to comment.