for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Xsolve\SalesforceClient\QueryBuilder\Expr\Select;
abstract class AbstractSelect
{
abstract protected function getSelectPart(): string;
public function asSOQL(): string
return $this->getSelectPart();
}