updates form api service

This commit is contained in:
Erik Amaru Ortiz
2013-09-04 16:11:33 -04:00
parent 673c0bfbda
commit 286c0856d4
4 changed files with 33 additions and 3 deletions

View File

@@ -0,0 +1,23 @@
<?php
namespace ProcessMaker;
class Api
{
private static $workspace;
public function __costruct()
{
$this->workspace = null;
}
public static function setWorkspace($workspace)
{
self::$workspace = $workspace;
}
public function getWorkspace()
{
return self::$workspace;
}
}