for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Helix\DB;
class Expression implements ExpressionInterface {
/**
* @var string
*/
protected $string;
* @param string $string
public function __construct (string $string) {
$this->string = $string;
}
* @return string
public function __toString () {
return $this->string;