intecture-api 0.3.2

API component for Intecture infrastructure. Intecture is the developer friendly, multi-lingual configuration management tool.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--TEST--
Test creating a ServiceRunnable
--FILE--
<?php

use Intecture\ServiceRunnable;

$runnable = new ServiceRunnable('/path/to/cmd', ServiceRunnable::COMMAND);
var_dump($runnable);
$runnable = new ServiceRunnable('mysvc', ServiceRunnable::SERVICE);
var_dump($runnable);

--EXPECT--
object(Intecture\ServiceRunnable)#1 (0) {
}
object(Intecture\ServiceRunnable)#2 (0) {
}