Skip to content

Commit 7b3c2f9

Browse files
authored
DMN...
1 parent 4078c4f commit 7b3c2f9

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

src/Models/DecisionDefinition.php

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?php
2+
3+
namespace Wertmenschen\CamundaApi\Models;
4+
5+
6+
class DecisionDefinition extends CamundaModel
7+
{
8+
public function evaluate($variables)
9+
{
10+
return $this->post('evaluate', ['json' => compact('variables')], true);
11+
}
12+
13+
public function getDefinition()
14+
{
15+
return $this->get('');
16+
}
17+
}

0 commit comments

Comments
 (0)