Skip to content

Commit

Permalink
DMN...
Browse files Browse the repository at this point in the history
  • Loading branch information
wertmenschen authored Nov 27, 2018
1 parent 4078c4f commit 7b3c2f9
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/Models/DecisionDefinition.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?php

namespace Wertmenschen\CamundaApi\Models;


class DecisionDefinition extends CamundaModel
{
public function evaluate($variables)
{
return $this->post('evaluate', ['json' => compact('variables')], true);
}

public function getDefinition()
{
return $this->get('');
}
}

0 comments on commit 7b3c2f9

Please sign in to comment.