for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
+------------------------------------------------------------------------+
| Plinker-RPC PHP |
| Copyright (c)2017-2018 (https://github.com/plinker-rpc/core) |
| This source file is subject to MIT License |
| that is bundled with this package in the file LICENSE. |
| |
| If you did not receive a copy of the license and are unable to |
| obtain it through the world-wide-web, please send an email |
| to [email protected] so we can send you a copy immediately. |
| Authors: Lawrence Cherone <[email protected]> |
*/
namespace Plinker\Core\Endpoint;
/**
* Plinker\Core\Endpoint\Test
*
* @codeCoverageIgnore
final class Test
{
* @var
private $config;
* Class construct
* @param array $config - Config array which holds object configuration
* @return void
public function __construct(array $config = [])
$this->config = $config;
}
public function config()
return $this->config;
public function this()
return $this;