for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Gnf\db\Helper;
class GnfSqlJoin extends GnfSqlTable
{
public $type;
public function __construct($in, $type = 'join')
parent::__construct($in);
$this->type = $type;
}