repo
stringlengths
7
63
file_url
stringlengths
81
284
file_path
stringlengths
5
200
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:02:33
2026-01-05 05:24:06
truncated
bool
2 classes
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/ServiceInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/ServiceInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; /** * ServiceInterface (BPMN Interface) defines a set of operations that are implemented by Services. */ interface ServiceInterface extends EntityInterface { const BPMN_PROPERTY_IMPLEMENTATION_REF = 'implementationRef'; const BPMN_PROPERTY_OPERATIONS = 'op...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/StandardLoopCharacteristicsInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/StandardLoopCharacteristicsInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; use ProcessMaker\Nayra\Contracts\Bpmn\FormalExpressionInterface; interface StandardLoopCharacteristicsInterface extends LoopCharacteristicsInterface { const BPMN_PROPERTY_TEST_BEFORE = 'testBefore'; const BPMN_PROPERTY_LOOP_MAXIMUM = 'loopMaximum'; con...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/TimerEventDefinitionInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/TimerEventDefinitionInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; use ProcessMaker\Nayra\Contracts\Engine\EngineInterface; /** * TimerEventDefinition interface. */ interface TimerEventDefinitionInterface extends EventDefinitionInterface { const BPMN_PROPERTY_TIME_DATE = 'timeDate'; const BPMN_PROPERTY_TIME_CYCLE = 'time...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/ItemDefinitionInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/ItemDefinitionInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; /** * An ItemDefinition is used to define the payload of the Message. */ interface ItemDefinitionInterface extends EntityInterface { const BPMN_PROPERTY_ITEM_KIND = 'itemKind'; const BPMN_PROPERTY_STRUCTURE = 'structure'; const BPMN_PROPERTY_STRUCTURE...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/ItemAwareElementInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/ItemAwareElementInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; /** * This element can store or convey items during process execution. */ interface ItemAwareElementInterface extends FlowElementInterface { /** * Get the items that are stored or conveyed by the ItemAwareElement. * * @return ItemDefinitionInterf...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/InputSetInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/InputSetInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; /** * InputSet interface. */ interface InputSetInterface extends EntityInterface { const BPMN_PROPERTY_DATA_INPUTS = 'dataInputs'; const BPMN_PROPERTY_DATA_INPUT_REFS = 'dataInputRefs'; /** * Get the DataInput elements that collectively make up t...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/ConditionalEventDefinitionInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/ConditionalEventDefinitionInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; /** * ConditionalEventDefinition interface. */ interface ConditionalEventDefinitionInterface extends EventDefinitionInterface { const BPMN_PROPERTY_CONDITION = 'condition'; /** * Get the condition to trigger the event. * * @return FormalExpr...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/EventDefinitionInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/EventDefinitionInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; use ProcessMaker\Nayra\Contracts\Engine\EngineInterface; use ProcessMaker\Nayra\Contracts\Engine\ExecutionInstanceInterface; /** * EventDefinition interface. */ interface EventDefinitionInterface extends EntityInterface { /** * Returns the element's id ...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/TokenInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/TokenInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; use ProcessMaker\Nayra\Contracts\Engine\ExecutionInstanceInterface; use Throwable; /** * Token of a process instance. */ interface TokenInterface extends EntityInterface { const BPMN_PROPERTY_MESSAGE = 'message'; const BPMN_PROPERTY_STATUS = 'status'; ...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/MultiInstanceLoopCharacteristicsInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/MultiInstanceLoopCharacteristicsInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; use ProcessMaker\Nayra\Contracts\Bpmn\TokenInterface; use ProcessMaker\Nayra\Contracts\Engine\ExecutionInstanceInterface; /** * MultiInstanceLoopCharacteristics interface allows for creation of a desired * number of Activity instances. The instances MAY execute in...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/ServiceTaskInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/ServiceTaskInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; /** * Defines the interface to be used by the ScriptTasks */ interface ServiceTaskInterface extends ActivityInterface { const BPMN_PROPERTY_IMPLEMENTATION = 'implementation'; const EVENT_SERVICE_TASK_ACTIVATED = 'ServiceTaskActivated'; /** * Sets...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/FlowElementInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/FlowElementInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; /** * Flow Element is an abstract class for all the elements that can appear in * a Process. */ interface FlowElementInterface extends EntityInterface { /** * @return $this */ public function setOwnerProcess(ProcessInterface $ownerProcess); ...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/TraversableInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/TraversableInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; use ProcessMaker\Nayra\Bpmn\Collection; /** * Interface to search paths through elements. */ interface TraversableInterface { /** * Find all the paths that complies with the $condition and $while. * * @param callable $condition * @param cal...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/ErrorEventDefinitionInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/ErrorEventDefinitionInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; use ProcessMaker\Nayra\Contracts\Bpmn\ErrorInterface; /** * ErrorEventDefinition interface. */ interface ErrorEventDefinitionInterface extends EventDefinitionInterface { const BPMN_PROPERTY_ERROR_REF = 'errorRef'; const BPMN_PROPERTY_ERROR = 'error'; ...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/MessageListenerInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/MessageListenerInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; use ProcessMaker\Nayra\Contracts\Engine\ExecutionInstanceInterface; /** * Behavior that must implement objects that listen to message notifications */ interface MessageListenerInterface { /** * Method to be called when a message event arrives * ...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/EventBasedGatewayInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/EventBasedGatewayInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; /** * Event Based Gateway Interface */ interface EventBasedGatewayInterface extends GatewayInterface { const EVENT_CATCH_EVENT_TRIGGERED = 'EventBasedGatewayCatchEventTriggered'; /** * Get the next Event Elements after the gateway * * @retur...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/GatewayCollectionInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/GatewayCollectionInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; /** * Collection of gateways. */ interface GatewayCollectionInterface extends CollectionInterface { /** * Add an element to the collection. * * @param GatewayInterface $element * * @return $this */ public function add(GatewayIn...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/DataInputInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/DataInputInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; /** * DataInput interface. */ interface DataInputInterface extends ItemAwareElementInterface { const BPMN_PROPERTY_ITEM_SUBJECT = 'itemSubject'; const BPMN_PROPERTY_ITEM_SUBJECT_REF = 'itemSubjectRef'; const BPMN_PROPERTY_IS_COLLECTION = 'isCollection...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/CorrelationKeyInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/CorrelationKeyInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; interface CorrelationKeyInterface { /** * Get the CorrelationProperties representing the partial keys of * this CorrelationKey. * * @return CorrelationPropertyInterface[] */ public function getCorrelationProperty(); }
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/DataStoreCollectionInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/DataStoreCollectionInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; /** * Collection of data stores. */ interface DataStoreCollectionInterface extends CollectionInterface { /** * Add an element to the collection. * * @param DataStoreInterface $element * * @return $this */ public function add(Da...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/DataStoreInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/DataStoreInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; /** * Data store interface. */ interface DataStoreInterface extends ItemAwareElementInterface { /** * Type of element. */ const TYPE = 'bpmnDataStore'; /** * Properties. */ const PROPERTIES = [ 'APP_UID' => '', '...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/ParallelGatewayInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/ParallelGatewayInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; interface ParallelGatewayInterface extends GatewayInterface { }
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/SignalInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/SignalInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; /** * Behavior that must implement all event messages */ interface SignalInterface extends EntityInterface { /** * Returns the id of the message * * @return string */ public function getId(); /** * Sets the id of the message ...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/CallActivityInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/CallActivityInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; /** * The Call Activity acts as a ‘wrapper’ for the invocation of a global * Process or Global Task within the execution. */ interface CallActivityInterface extends ActivityInterface { const BPMN_PROPERTY_CALLED_ELEMENT = 'calledElement'; /** * Get t...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/CatchEventInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/CatchEventInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; use ProcessMaker\Nayra\Contracts\Engine\EngineInterface; use ProcessMaker\Nayra\Contracts\Engine\ExecutionInstanceInterface; /** * CatchEvent interface. */ interface CatchEventInterface extends EventInterface { const BPMN_PROPERTY_PARALLEL_MULTIPLE = 'parallel...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/EventInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/EventInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; use ProcessMaker\Nayra\Contracts\Bpmn\FlowNodeInterface; /** * EventInterface */ interface EventInterface extends FlowNodeInterface { const BPMN_PROPERTY_EVENT_DEFINITIONS = 'eventDefinitions'; const BPMN_PROPERTY_DATA_INPUT = 'dataInput'; const BPMN_P...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/ProcessInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/ProcessInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; use ProcessMaker\Nayra\Contracts\Engine\ExecutionInstanceInterface; use ProcessMaker\Nayra\Contracts\RepositoryInterface; /** * Process describes a business work using a sequence or flow of activities. */ interface ProcessInterface extends CallableElementInterface...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/ComplexBehaviorDefinitionInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/ComplexBehaviorDefinitionInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; /** * Complex Behavior Definition This element controls when and which Events are * thrown in case behavior of the Multi-Instance Activity is set to complex. */ interface ComplexBehaviorDefinitionInterface extends EntityInterface { const BPMN_PROPERTY_CONDITIO...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/ConnectionNodeInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/ConnectionNodeInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; use ProcessMaker\Nayra\Bpmn\Collection; /** * Connection node (States and transitions) that define the behavior of * a bpmn flow node. */ interface ConnectionNodeInterface extends EntityInterface { /** * @return Collection Outgoing flows. */ pub...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/DiagramInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/DiagramInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; /** * Diagram contains flow elements of a process. */ interface DiagramInterface extends EntityInterface { /** * Type of element. */ const TYPE = 'bpmnDiagram'; /** * Properties. */ const PROPERTIES = [ 'DIA_UID' => '', ...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/LaneSetInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/LaneSetInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; /** * Lane set interface. */ interface LaneSetInterface extends EntityInterface { const BPMN_PROPERTY_LANE = 'lane'; /** * Get the name of the lane set. * * @return string */ public function getName(); /** * Get the lanes ...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/LoopCharacteristicsInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/LoopCharacteristicsInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; use ProcessMaker\Nayra\Contracts\Bpmn\TokenInterface; use ProcessMaker\Nayra\Contracts\Engine\ExecutionInstanceInterface; /** * Activities MAY be repeated sequentially, essentially behaving like a loop. * The presence of LoopCharacteristics signifies that the Acti...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/EventCollectionInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/EventCollectionInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; /** * Collection of Events. */ interface EventCollectionInterface extends CollectionInterface { /** * Add an element to the collection. * * @param EventInterface $element * * @return $this */ public function add(EventInterface ...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/FlowInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/FlowInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; /** * FlowInterface */ interface FlowInterface extends EntityInterface { /** * Type of element. */ const TYPE = 'bpmnFlow'; const BPMN_PROPERTY_CONDITION_EXPRESSION = 'conditionExpression'; const BPMN_PROPERTY_IS_DEFAULT = 'isDefault'; ...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/ArtifactCollectionInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/ArtifactCollectionInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; /** * Collection of artifacts. */ interface ArtifactCollectionInterface extends CollectionInterface { /** * Add an element to the collection. * * @param ArtifactInterface $element * * @return $this */ public function add(Artifa...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/CancelInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/CancelInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; /** * CancelInterface for the CancelEventDefinition. */ interface CancelInterface extends EntityInterface { }
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/DiagramCollectionInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/DiagramCollectionInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; /** * Collection of process diagrams. */ interface DiagramCollectionInterface extends CollectionInterface { /** * Add an element to the collection. * * @param DiagramInterface $element * * @return $this */ public function add(D...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/CollaborationInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/CollaborationInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; /** * A collaboration is a collection of participants and the messages they exchange. */ interface CollaborationInterface extends EntityInterface { const BPMN_PROPERTY_PARTICIPANT = 'participant'; const BPMN_PROPERTY_MESSAGE_FLOW = 'messageFlow'; cons...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/AssignmentInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/AssignmentInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; /** * Assignment interface. */ interface AssignmentInterface extends EntityInterface { const BPMN_PROPERTY_FROM = 'from'; const BPMN_PROPERTY_TO = 'to'; /** * @return FormalExpressionInterface */ public function getFrom(); /** *...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/DataInputAssociationInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/DataInputAssociationInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; /** * DataInputAssociation interface. */ interface DataInputAssociationInterface extends DataAssociationInterface { const BPMN_PROPERTY_ASSIGNMENT = 'assignment'; const BPMN_PROPERTY_SOURCES_REF = 'sourceRef'; const BPMN_PROPERTY_TARGET_REF = 'targetRef...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/ArtifactInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/ArtifactInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; /** * Artifact interface. */ interface ArtifactInterface extends EntityInterface { /** * Type of element. */ const TYPE = 'bpmnArtifact'; const TYPE_HORIZONTAL_LINE = 'HORIZONTAL_LINE'; const TYPE_VERTICAL_LINE = 'VERTICAL_LINE'; co...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/FlowCollectionInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/FlowCollectionInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; /** * Collection of flows. */ interface FlowCollectionInterface extends CollectionInterface { /** * Add an element to the collection. * * @param FlowInterface $element * * @return $this */ public function add(FlowInterface $ele...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/ThrowEventInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/ThrowEventInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; /** * ThrowEvent interface. */ interface ThrowEventInterface extends EventInterface { /** * Events defined for the the throw event interface */ const EVENT_THROW_TOKEN_ARRIVES = 'ThrowEventTokenArrives'; const EVENT_THROW_EXCEPTION = 'ThrowEv...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/LaneInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/LaneInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; /** * Lane interface. */ interface LaneInterface extends EntityInterface { const BPMN_PROPERTY_FLOW_NODE = 'flowNode'; const BPMN_PROPERTY_FLOW_NODE_REF = 'flowNodeRef'; const BPMN_PROPERTY_CHILD_LANE_SET = 'childLaneSet'; /** * Get the name...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/FlowNodeInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/FlowNodeInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; use ProcessMaker\Nayra\Contracts\Engine\ExecutionInstanceInterface; use ProcessMaker\Nayra\Contracts\RepositoryInterface; /** * Flow node define the behavior of a element that can be used as * a source or target element in a flow. */ interface FlowNodeInterface e...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/SignalEventDefinitionInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/SignalEventDefinitionInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; /** * MessageEventDefinition interface. */ interface SignalEventDefinitionInterface extends EventDefinitionInterface { const EVENT_THROW_EVENT_DEFINITION = 'ThrowSignalEvent'; const EVENT_CATCH_EVENT_DEFINITION = 'CatchSignalEvent'; const BPMN_PROPERT...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/DatePeriodInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/DatePeriodInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; use DateInterval; use DateTimeInterface; use Iterator; /** * DatePeriod represents an ISO8601 Repeating intervals */ interface DatePeriodInterface extends Iterator { /** * Get start date time * * @return DateTimeInterface */ public func...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/DataAssociationInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/DataAssociationInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; /** * DataAssociation interface. */ interface DataAssociationInterface extends EntityInterface { const BPMN_PROPERTY_ASSIGNMENT = 'assignment'; const BPMN_PROPERTY_SOURCES_REF = 'sourceRef'; const BPMN_PROPERTY_TARGET_REF = 'targetRef'; const BPMN_P...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/ScriptTaskInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/ScriptTaskInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; /** * Defines the interface to be used by the ScriptTasks */ interface ScriptTaskInterface extends ActivityInterface { const BPMN_PROPERTY_SCRIPT_FORMAT = 'scriptFormat'; const BPMN_PROPERTY_SCRIPT = 'script'; const EVENT_SCRIPT_TASK_ACTIVATED = 'Scri...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/InputOutputSpecificationInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/InputOutputSpecificationInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; /** * An ItemDefinition is used to define the payload of the Message. */ interface InputOutputSpecificationInterface extends EntityInterface { const BPMN_PROPERTY_DATA_INPUT = 'dataInput'; const BPMN_PROPERTY_DATA_OUTPUT = 'dataOutput'; const BPMN_PRO...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Bpmn/DataOutputInterface.php
src/ProcessMaker/Nayra/Contracts/Bpmn/DataOutputInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Bpmn; /** * DataOutput interface. */ interface DataOutputInterface extends ItemAwareElementInterface { const BPMN_PROPERTY_ITEM_SUBJECT = 'itemSubject'; const BPMN_PROPERTY_ITEM_SUBJECT_REF = 'itemSubjectRef'; const BPMN_PROPERTY_IS_COLLECTION = 'isCollecti...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Repositories/TokenRepositoryInterface.php
src/ProcessMaker/Nayra/Contracts/Repositories/TokenRepositoryInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Repositories; use ProcessMaker\Nayra\Bpmn\Collection; use ProcessMaker\Nayra\Contracts\Bpmn\ActivityInterface; use ProcessMaker\Nayra\Contracts\Bpmn\CatchEventInterface; use ProcessMaker\Nayra\Contracts\Bpmn\CollectionInterface; use ProcessMaker\Nayra\Contracts\Bpmn\EventB...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Repositories/ExecutionInstanceRepositoryInterface.php
src/ProcessMaker/Nayra/Contracts/Repositories/ExecutionInstanceRepositoryInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Repositories; use ProcessMaker\Nayra\Contracts\Bpmn\ParticipantInterface; use ProcessMaker\Nayra\Contracts\Engine\ExecutionInstanceInterface; /** * Repository for ExecutionInstanceInterface */ interface ExecutionInstanceRepositoryInterface { /** * Load an execu...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Repositories/StorageInterface.php
src/ProcessMaker/Nayra/Contracts/Repositories/StorageInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Repositories; use ProcessMaker\Nayra\Contracts\Bpmn\EntityInterface; use ProcessMaker\Nayra\Contracts\Engine\EngineInterface; use ProcessMaker\Nayra\Contracts\RepositoryInterface; /** * RepositoryFactory */ interface StorageInterface { /** * Set the factory use...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Engine/ExecutionInstanceInterface.php
src/ProcessMaker/Nayra/Contracts/Engine/ExecutionInstanceInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Engine; use ProcessMaker\Nayra\Contracts\Bpmn\DataStoreInterface; use ProcessMaker\Nayra\Contracts\Bpmn\EntityInterface; use ProcessMaker\Nayra\Contracts\Bpmn\ProcessInterface; use ProcessMaker\Nayra\Contracts\Bpmn\TokenInterface; /** * Execution instance for the engine....
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Engine/JobManagerInterface.php
src/ProcessMaker/Nayra/Contracts/Engine/JobManagerInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Engine; use ProcessMaker\Nayra\Contracts\Bpmn\FlowElementInterface; use ProcessMaker\Nayra\Contracts\Bpmn\TimerEventDefinitionInterface; use ProcessMaker\Nayra\Contracts\Bpmn\TokenInterface; /** * Job manager required for scheduling timer events. * * This interface als...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Engine/DemoModeInterface.php
src/ProcessMaker/Nayra/Contracts/Engine/DemoModeInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Engine; use ProcessMaker\Nayra\Contracts\Bpmn\FlowInterface; use ProcessMaker\Nayra\Contracts\Bpmn\GatewayInterface; /** * Demo Mode interface. */ interface DemoModeInterface { /** * Returns true if the engine is in demo mode. * * @return bool */...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Engine/EngineInterface.php
src/ProcessMaker/Nayra/Contracts/Engine/EngineInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Engine; use ProcessMaker\Nayra\Contracts\Bpmn\CollaborationInterface; use ProcessMaker\Nayra\Contracts\Bpmn\DataStoreInterface; use ProcessMaker\Nayra\Contracts\Bpmn\EventInterface; use ProcessMaker\Nayra\Contracts\Bpmn\ProcessInterface; use ProcessMaker\Nayra\Contracts\Ev...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Contracts/Engine/EventDefinitionBusInterface.php
src/ProcessMaker/Nayra/Contracts/Engine/EventDefinitionBusInterface.php
<?php namespace ProcessMaker\Nayra\Contracts\Engine; use ProcessMaker\Nayra\Contracts\Bpmn\CatchEventInterface; use ProcessMaker\Nayra\Contracts\Bpmn\CollaborationInterface; use ProcessMaker\Nayra\Contracts\Bpmn\EventDefinitionInterface; use ProcessMaker\Nayra\Contracts\Bpmn\ObservableInterface; use ProcessMaker\Nayr...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Bpmn/ActivityTrait.php
src/ProcessMaker/Nayra/Bpmn/ActivityTrait.php
<?php namespace ProcessMaker\Nayra\Bpmn; use Exception; use ProcessMaker\Nayra\Contracts\Bpmn\ActivityInterface; use ProcessMaker\Nayra\Contracts\Bpmn\BoundaryEventInterface; use ProcessMaker\Nayra\Contracts\Bpmn\ErrorEventDefinitionInterface; use ProcessMaker\Nayra\Contracts\Bpmn\FlowInterface; use ProcessMaker\Nayr...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Bpmn/Assignment.php
src/ProcessMaker/Nayra/Bpmn/Assignment.php
<?php namespace ProcessMaker\Nayra\Bpmn; use ProcessMaker\Nayra\Contracts\Bpmn\AssignmentInterface; use ProcessMaker\Nayra\Contracts\Bpmn\FormalExpressionInterface; /** * Assignment class that implements AssignmentInterface */ class Assignment implements AssignmentInterface { use BaseTrait; /** * Get...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Bpmn/EndTransition.php
src/ProcessMaker/Nayra/Bpmn/EndTransition.php
<?php namespace ProcessMaker\Nayra\Bpmn; use ProcessMaker\Nayra\Contracts\Bpmn\TokenInterface; use ProcessMaker\Nayra\Contracts\Bpmn\TransitionInterface; use ProcessMaker\Nayra\Contracts\Engine\ExecutionInstanceInterface; /** * Transition rule to consume tokens in an End Event. */ class EndTransition implements Tr...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Bpmn/StandardLoopCharacteristicsTrait.php
src/ProcessMaker/Nayra/Bpmn/StandardLoopCharacteristicsTrait.php
<?php namespace ProcessMaker\Nayra\Bpmn; use ProcessMaker\Nayra\Contracts\Bpmn\FormalExpressionInterface; use ProcessMaker\Nayra\Contracts\Bpmn\StandardLoopCharacteristicsInterface; /** * Base implementation for LoopCharacteristicsInterface * * @implements ProcessMaker\Nayra\Contracts\Bpmn\StandardLoopCharacteris...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Bpmn/Collection.php
src/ProcessMaker/Nayra/Bpmn/Collection.php
<?php namespace ProcessMaker\Nayra\Bpmn; use ProcessMaker\Nayra\Contracts\Bpmn\CollectionInterface; /** * Collection of elements */ class Collection implements CollectionInterface { /** * Items of the collection. * * @var array */ private $items = []; /** * Index of the iterat...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Bpmn/ConditionedGatewayTrait.php
src/ProcessMaker/Nayra/Bpmn/ConditionedGatewayTrait.php
<?php namespace ProcessMaker\Nayra\Bpmn; use ProcessMaker\Nayra\Contracts\Bpmn\ConditionedTransitionInterface; use ProcessMaker\Nayra\Contracts\Bpmn\FlowInterface; use ProcessMaker\Nayra\Contracts\Bpmn\GatewayInterface; use ProcessMaker\Nayra\Contracts\Bpmn\TransitionInterface; use ProcessMaker\Nayra\Contracts\Reposi...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Bpmn/EndEventTrait.php
src/ProcessMaker/Nayra/Bpmn/EndEventTrait.php
<?php namespace ProcessMaker\Nayra\Bpmn; use ProcessMaker\Nayra\Contracts\Bpmn\CollectionInterface; use ProcessMaker\Nayra\Contracts\Bpmn\ErrorEventDefinitionInterface; use ProcessMaker\Nayra\Contracts\Bpmn\EventInterface; use ProcessMaker\Nayra\Contracts\Bpmn\FlowInterface; use ProcessMaker\Nayra\Contracts\Bpmn\Stat...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Bpmn/Connection.php
src/ProcessMaker/Nayra/Bpmn/Connection.php
<?php namespace ProcessMaker\Nayra\Bpmn; use ProcessMaker\Nayra\Contracts\Bpmn\ConnectionInterface; use ProcessMaker\Nayra\Contracts\Bpmn\ConnectionNodeInterface; use ProcessMaker\Nayra\Contracts\Bpmn\StateInterface; /** * Class that connect States and Transitions. */ class Connection implements ConnectionInterfac...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Bpmn/ParallelGatewayTrait.php
src/ProcessMaker/Nayra/Bpmn/ParallelGatewayTrait.php
<?php namespace ProcessMaker\Nayra\Bpmn; use ProcessMaker\Nayra\Contracts\Bpmn\FlowInterface; use ProcessMaker\Nayra\Contracts\Bpmn\GatewayInterface; use ProcessMaker\Nayra\Contracts\Bpmn\StateInterface; use ProcessMaker\Nayra\Contracts\Bpmn\TokenInterface; use ProcessMaker\Nayra\Contracts\Bpmn\TransitionInterface; u...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Bpmn/ActivityInterruptedTransition.php
src/ProcessMaker/Nayra/Bpmn/ActivityInterruptedTransition.php
<?php namespace ProcessMaker\Nayra\Bpmn; use ProcessMaker\Nayra\Contracts\Bpmn\ActivityInterface; use ProcessMaker\Nayra\Contracts\Bpmn\CollectionInterface; use ProcessMaker\Nayra\Contracts\Bpmn\TokenInterface; use ProcessMaker\Nayra\Contracts\Bpmn\TransitionInterface; use ProcessMaker\Nayra\Contracts\Engine\Executio...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Bpmn/DefaultTransition.php
src/ProcessMaker/Nayra/Bpmn/DefaultTransition.php
<?php namespace ProcessMaker\Nayra\Bpmn; use ProcessMaker\Nayra\Contracts\Bpmn\GatewayInterface; use ProcessMaker\Nayra\Contracts\Bpmn\TokenInterface; use ProcessMaker\Nayra\Contracts\Bpmn\TransitionInterface; use ProcessMaker\Nayra\Contracts\Engine\ExecutionInstanceInterface; /** * Verify the condition to transit ...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Bpmn/EventBasedTransition.php
src/ProcessMaker/Nayra/Bpmn/EventBasedTransition.php
<?php namespace ProcessMaker\Nayra\Bpmn; use ProcessMaker\Nayra\Contracts\Bpmn\CatchEventInterface; use ProcessMaker\Nayra\Contracts\Bpmn\CollectionInterface; use ProcessMaker\Nayra\Contracts\Bpmn\EventBasedGatewayInterface; use ProcessMaker\Nayra\Contracts\Bpmn\FlowElementInterface; use ProcessMaker\Nayra\Contracts\...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Bpmn/Transition.php
src/ProcessMaker/Nayra/Bpmn/Transition.php
<?php namespace ProcessMaker\Nayra\Bpmn; use ProcessMaker\Nayra\Bpmn\TransitionTrait; use ProcessMaker\Nayra\Contracts\Bpmn\FlowNodeInterface; use ProcessMaker\Nayra\Contracts\Bpmn\TokenInterface; use ProcessMaker\Nayra\Contracts\Bpmn\TransitionInterface; use ProcessMaker\Nayra\Contracts\Engine\ExecutionInstanceInter...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Bpmn/ParallelOutputTransition.php
src/ProcessMaker/Nayra/Bpmn/ParallelOutputTransition.php
<?php namespace ProcessMaker\Nayra\Bpmn; use ProcessMaker\Nayra\Contracts\Bpmn\TokenInterface; use ProcessMaker\Nayra\Contracts\Bpmn\TransitionInterface; use ProcessMaker\Nayra\Contracts\Engine\ExecutionInstanceInterface; /** * Transition rule that always pass the token. */ class ParallelOutputTransition extends T...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Bpmn/StateTrait.php
src/ProcessMaker/Nayra/Bpmn/StateTrait.php
<?php namespace ProcessMaker\Nayra\Bpmn; use ProcessMaker\Nayra\Contracts\Bpmn\CollectionInterface; use ProcessMaker\Nayra\Contracts\Bpmn\FlowNodeInterface; use ProcessMaker\Nayra\Contracts\Bpmn\StateInterface; use ProcessMaker\Nayra\Contracts\Bpmn\TokenInterface; use ProcessMaker\Nayra\Contracts\Bpmn\TransitionInter...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Bpmn/State.php
src/ProcessMaker/Nayra/Bpmn/State.php
<?php namespace ProcessMaker\Nayra\Bpmn; use ProcessMaker\Nayra\Bpmn\StateTrait; use ProcessMaker\Nayra\Contracts\Bpmn\StateInterface; /** * State of a node in which tokens can be received. */ class State implements StateInterface { use StateTrait; }
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Bpmn/IntermediateCatchEventTrait.php
src/ProcessMaker/Nayra/Bpmn/IntermediateCatchEventTrait.php
<?php namespace ProcessMaker\Nayra\Bpmn; use ProcessMaker\Nayra\Contracts\Bpmn\CollectionInterface; use ProcessMaker\Nayra\Contracts\Bpmn\EventInterface; use ProcessMaker\Nayra\Contracts\Bpmn\FlowInterface; use ProcessMaker\Nayra\Contracts\Bpmn\IntermediateCatchEventInterface; use ProcessMaker\Nayra\Contracts\Bpmn\St...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Bpmn/IntermediateThrowEventTransition.php
src/ProcessMaker/Nayra/Bpmn/IntermediateThrowEventTransition.php
<?php namespace ProcessMaker\Nayra\Bpmn; use ProcessMaker\Nayra\Contracts\Bpmn\TokenInterface; use ProcessMaker\Nayra\Contracts\Bpmn\TransitionInterface; use ProcessMaker\Nayra\Contracts\Engine\ExecutionInstanceInterface; /** * Transition rule to consume tokens in an End Event. */ class IntermediateThrowEventTrans...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Bpmn/IntermediateThrowEventTrait.php
src/ProcessMaker/Nayra/Bpmn/IntermediateThrowEventTrait.php
<?php namespace ProcessMaker\Nayra\Bpmn; use ProcessMaker\Nayra\Contracts\Bpmn\FlowInterface; use ProcessMaker\Nayra\Contracts\Bpmn\GatewayInterface; use ProcessMaker\Nayra\Contracts\Bpmn\IntermediateThrowEventInterface; use ProcessMaker\Nayra\Contracts\Bpmn\StateInterface; use ProcessMaker\Nayra\Contracts\Bpmn\Token...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Bpmn/CancelActivityTransition.php
src/ProcessMaker/Nayra/Bpmn/CancelActivityTransition.php
<?php namespace ProcessMaker\Nayra\Bpmn; use ProcessMaker\Nayra\Contracts\Bpmn\ActivityInterface; use ProcessMaker\Nayra\Contracts\Bpmn\CancelInterface; use ProcessMaker\Nayra\Contracts\Bpmn\TokenInterface; use ProcessMaker\Nayra\Contracts\Bpmn\TransitionInterface; use ProcessMaker\Nayra\Contracts\Engine\ExecutionIns...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Bpmn/BaseTrait.php
src/ProcessMaker/Nayra/Bpmn/BaseTrait.php
<?php namespace ProcessMaker\Nayra\Bpmn; use ProcessMaker\Nayra\Contracts\Repositories\StorageInterface; use ProcessMaker\Nayra\Contracts\RepositoryInterface; use ProcessMaker\Nayra\Contracts\Storage\BpmnDocumentInterface; use ProcessMaker\Nayra\Contracts\Storage\BpmnElementInterface; use ReflectionClass; /** * Bas...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Bpmn/BoundaryCaughtTransition.php
src/ProcessMaker/Nayra/Bpmn/BoundaryCaughtTransition.php
<?php namespace ProcessMaker\Nayra\Bpmn; use ProcessMaker\Nayra\Contracts\Bpmn\ActivityInterface; use ProcessMaker\Nayra\Contracts\Bpmn\BoundaryEventInterface; use ProcessMaker\Nayra\Contracts\Bpmn\TokenInterface; use ProcessMaker\Nayra\Contracts\Bpmn\TransitionInterface; use ProcessMaker\Nayra\Contracts\Engine\Execu...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Bpmn/DataInputAssociation.php
src/ProcessMaker/Nayra/Bpmn/DataInputAssociation.php
<?php namespace ProcessMaker\Nayra\Bpmn; use ProcessMaker\Nayra\Contracts\Bpmn\DataInputAssociationInterface; /** * Transition to check if the activity is a loop not yet completed or a single instance */ class DataInputAssociation implements DataInputAssociationInterface { use BaseTrait; protected functio...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Bpmn/ConditionedTransition.php
src/ProcessMaker/Nayra/Bpmn/ConditionedTransition.php
<?php namespace ProcessMaker\Nayra\Bpmn; use ProcessMaker\Nayra\Contracts\Bpmn\ConditionedTransitionInterface; use ProcessMaker\Nayra\Contracts\Bpmn\TokenInterface; use ProcessMaker\Nayra\Contracts\Bpmn\TransitionInterface; use ProcessMaker\Nayra\Contracts\Engine\ExecutionInstanceInterface; /** * Verify the conditi...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Bpmn/UncaughtCancelTransition.php
src/ProcessMaker/Nayra/Bpmn/UncaughtCancelTransition.php
<?php namespace ProcessMaker\Nayra\Bpmn; use ProcessMaker\Nayra\Contracts\Bpmn\CancelInterface; use ProcessMaker\Nayra\Contracts\Bpmn\TokenInterface; use ProcessMaker\Nayra\Contracts\Bpmn\TransitionInterface; use ProcessMaker\Nayra\Contracts\Engine\ExecutionInstanceInterface; /** * Uncaught Cancel Transition. */ c...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Bpmn/Lane.php
src/ProcessMaker/Nayra/Bpmn/Lane.php
<?php namespace ProcessMaker\Nayra\Bpmn; use ProcessMaker\Nayra\Bpmn\Collection; use ProcessMaker\Nayra\Contracts\Bpmn\CollectionInterface; use ProcessMaker\Nayra\Contracts\Bpmn\LaneInterface; /** * Lane class */ class Lane implements LaneInterface { use BaseTrait; /** * Initialize the lane set. ...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Bpmn/DataOutputTransition.php
src/ProcessMaker/Nayra/Bpmn/DataOutputTransition.php
<?php namespace ProcessMaker\Nayra\Bpmn; use ProcessMaker\Nayra\Contracts\Bpmn\ActivityInterface; use ProcessMaker\Nayra\Contracts\Bpmn\CollectionInterface; use ProcessMaker\Nayra\Contracts\Bpmn\ConnectionInterface; use ProcessMaker\Nayra\Contracts\Bpmn\TokenInterface; use ProcessMaker\Nayra\Contracts\Bpmn\Transition...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Bpmn/DataInputTransition.php
src/ProcessMaker/Nayra/Bpmn/DataInputTransition.php
<?php namespace ProcessMaker\Nayra\Bpmn; use ProcessMaker\Nayra\Contracts\Bpmn\ActivityInterface; use ProcessMaker\Nayra\Contracts\Bpmn\CollectionInterface; use ProcessMaker\Nayra\Contracts\Bpmn\ConnectionInterface; use ProcessMaker\Nayra\Contracts\Bpmn\TokenInterface; use ProcessMaker\Nayra\Contracts\Bpmn\Transition...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Bpmn/ActivityExceptionTransition.php
src/ProcessMaker/Nayra/Bpmn/ActivityExceptionTransition.php
<?php namespace ProcessMaker\Nayra\Bpmn; use ProcessMaker\Nayra\Contracts\Bpmn\ErrorInterface; use ProcessMaker\Nayra\Contracts\Bpmn\TokenInterface; use ProcessMaker\Nayra\Contracts\Bpmn\TransitionInterface; use ProcessMaker\Nayra\Contracts\Engine\ExecutionInstanceInterface; /** * Uncaught Exception Transition. */...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Bpmn/DataOutputAssociation.php
src/ProcessMaker/Nayra/Bpmn/DataOutputAssociation.php
<?php namespace ProcessMaker\Nayra\Bpmn; use ProcessMaker\Nayra\Contracts\Bpmn\DataOutputAssociationInterface; /** * DataOutputAssociation class for handling data output associations in BPMN processes */ class DataOutputAssociation implements DataOutputAssociationInterface { use BaseTrait; protected funct...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Bpmn/Path.php
src/ProcessMaker/Nayra/Bpmn/Path.php
<?php namespace ProcessMaker\Nayra\Bpmn; /** * Path of flows and elements. */ class Path { protected $elements; /** * Path constructor. * * @param array $elements */ public function __construct(array $elements) { $this->elements = $elements; } /** * Get the...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Bpmn/EventDefinitionTrait.php
src/ProcessMaker/Nayra/Bpmn/EventDefinitionTrait.php
<?php namespace ProcessMaker\Nayra\Bpmn; use ProcessMaker\Nayra\Contracts\Bpmn\CatchEventInterface; use ProcessMaker\Nayra\Contracts\Bpmn\EventDefinitionInterface; use ProcessMaker\Nayra\Contracts\Bpmn\TokenInterface; use ProcessMaker\Nayra\Contracts\Engine\EngineInterface; use ProcessMaker\Nayra\Contracts\Engine\Exe...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Bpmn/DataStoreTrait.php
src/ProcessMaker/Nayra/Bpmn/DataStoreTrait.php
<?php namespace ProcessMaker\Nayra\Bpmn; use ProcessMaker\Nayra\Contracts\Bpmn\ItemDefinitionInterface; use ProcessMaker\Nayra\Contracts\Bpmn\ProcessInterface; /** * Implementation of the behavior for a data store. */ trait DataStoreTrait { use FlowElementTrait; private $data = []; /** * @var \P...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Bpmn/InclusiveGatewayTransition.php
src/ProcessMaker/Nayra/Bpmn/InclusiveGatewayTransition.php
<?php namespace ProcessMaker\Nayra\Bpmn; use ProcessMaker\Nayra\Contracts\Bpmn\StateInterface; use ProcessMaker\Nayra\Contracts\Bpmn\TokenInterface; use ProcessMaker\Nayra\Contracts\Bpmn\TransitionInterface; use ProcessMaker\Nayra\Contracts\Engine\ExecutionInstanceInterface; use ProcessMaker\Nayra\Engine\DemoModeTrai...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Bpmn/FlowTrait.php
src/ProcessMaker/Nayra/Bpmn/FlowTrait.php
<?php namespace ProcessMaker\Nayra\Bpmn; /** * Flow connects to flow node elements. */ trait FlowTrait { use BaseTrait; }
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Bpmn/CatchEventTrait.php
src/ProcessMaker/Nayra/Bpmn/CatchEventTrait.php
<?php namespace ProcessMaker\Nayra\Bpmn; use ProcessMaker\Nayra\Contracts\Bpmn\CatchEventInterface; use ProcessMaker\Nayra\Contracts\Bpmn\EventDefinitionInterface; use ProcessMaker\Nayra\Contracts\Bpmn\StateInterface; use ProcessMaker\Nayra\Contracts\Bpmn\TokenInterface; use ProcessMaker\Nayra\Contracts\Engine\Engine...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Bpmn/ExclusiveGatewayTrait.php
src/ProcessMaker/Nayra/Bpmn/ExclusiveGatewayTrait.php
<?php namespace ProcessMaker\Nayra\Bpmn; use ProcessMaker\Nayra\Contracts\Bpmn\FlowInterface; use ProcessMaker\Nayra\Contracts\Bpmn\GatewayInterface; use ProcessMaker\Nayra\Contracts\Bpmn\StateInterface; use ProcessMaker\Nayra\Contracts\Bpmn\TokenInterface; use ProcessMaker\Nayra\Contracts\Bpmn\TransitionInterface; u...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Bpmn/FlowNodeTrait.php
src/ProcessMaker/Nayra/Bpmn/FlowNodeTrait.php
<?php namespace ProcessMaker\Nayra\Bpmn; use ProcessMaker\Nayra\Contracts\Bpmn\FlowInterface; use ProcessMaker\Nayra\Contracts\Bpmn\FlowNodeInterface; use ProcessMaker\Nayra\Contracts\Bpmn\GatewayInterface; use ProcessMaker\Nayra\Contracts\Bpmn\ProcessInterface; use ProcessMaker\Nayra\Contracts\Bpmn\StateInterface; u...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Bpmn/TraversableTrait.php
src/ProcessMaker/Nayra/Bpmn/TraversableTrait.php
<?php namespace ProcessMaker\Nayra\Bpmn; use ProcessMaker\Nayra\Contracts\Bpmn\ConnectionInterface; use ProcessMaker\Nayra\Contracts\Bpmn\ConnectionNodeInterface; /** * Implements the search of paths through elements. */ trait TraversableTrait { /** * Collection of incoming flows. * * @var Colle...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Bpmn/MultiInstanceLoopCharacteristicsTrait.php
src/ProcessMaker/Nayra/Bpmn/MultiInstanceLoopCharacteristicsTrait.php
<?php namespace ProcessMaker\Nayra\Bpmn; use ProcessMaker\Nayra\Contracts\Bpmn\ComplexBehaviorDefinitionInterface; use ProcessMaker\Nayra\Contracts\Bpmn\DataInputInterface; use ProcessMaker\Nayra\Contracts\Bpmn\DataOutputInterface; use ProcessMaker\Nayra\Contracts\Bpmn\FormalExpressionInterface; use ProcessMaker\Nayr...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false
ProcessMaker/nayra
https://github.com/ProcessMaker/nayra/blob/19d721d6bd27f80d33288125488b244e83b6e191/src/ProcessMaker/Nayra/Bpmn/BoundaryNoInterruptActivityTransition.php
src/ProcessMaker/Nayra/Bpmn/BoundaryNoInterruptActivityTransition.php
<?php namespace ProcessMaker\Nayra\Bpmn; use ProcessMaker\Nayra\Contracts\Bpmn\BoundaryEventInterface; use ProcessMaker\Nayra\Contracts\Bpmn\TokenInterface; use ProcessMaker\Nayra\Contracts\Bpmn\TransitionInterface; use ProcessMaker\Nayra\Contracts\Engine\ExecutionInstanceInterface; /** * Check if Boundary does not...
php
Apache-2.0
19d721d6bd27f80d33288125488b244e83b6e191
2026-01-05T05:04:52.897638Z
false