Skip to content

Commit

Permalink
ENGCOM-7958: #1714: Change access level for metadata model functions …
Browse files Browse the repository at this point in the history
…to private #29401

 - Merge Pull Request #29401 from joweecaquicla/magento2:ASI-1714-change-access-level-for-metadata-model-functions-to-private
 - Merged commits:
   1. 1ee84fb
   2. 78cfc8a
  • Loading branch information
magento-engcom-team committed Aug 5, 2020
2 parents 00f8a8c + 78cfc8a commit b7af9e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public function __construct(
* @return bool
* @throws FileSystemException
*/
public function isApplicable(string $path): bool
private function isApplicable(string $path): bool
{
$resource = $this->driver->fileOpen($path, 'rb');
try {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ private function insertPngXmpSegment(array $segments, SegmentInterface $xmpSegme
* @param MetadataInterface $metadata
* @return SegmentInterface
*/
public function createPngXmpSegment(MetadataInterface $metadata): SegmentInterface
private function createPngXmpSegment(MetadataInterface $metadata): SegmentInterface
{
$xmpData = $this->xmpTemplate->get();
return $this->segmentFactory->create([
Expand Down

0 comments on commit b7af9e6

Please sign in to comment.