for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created by Gorlum 12.06.2017 14:41
*/
namespace DBAL;
* Class ActiveRecord
*
* Represent table in DB/one record in DB. Breaking SRP with joy!
* @property int|string $id - Record ID name would be normalized to 'id'
* @package DBAL
class ActiveRecord extends ActiveRecordAbstractIndexed {
}