Skip to content

Commit

Permalink
added: akeneo item build
Browse files Browse the repository at this point in the history
  • Loading branch information
Thijzer committed Dec 20, 2024
1 parent 3516680 commit bc5a800
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/Model/DataStructure/ItemNodeInterface.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?php

namespace Misery\Model\DataStructure;

use Misery\Component\Converter\Matcher;

interface ItemNodeInterface
{
public function getContext(): array;
public function getScope(): ScopeInterface;
public function equals(string $code): bool;
public function getMatcher(): Matcher;
public function getType(): string;
public function getCode(): string;
public function getValue();
public function getDataValue();
}

0 comments on commit bc5a800

Please sign in to comment.