This repository has been archived on 2024-10-04. You can view files and clone it, but cannot push or open issues or pull requests.
AroMVC/index.php
2017-02-24 10:39:37 -06:00

13 lines
258 B
PHP

<?php
namespace AroMVC;
include "auto.php";
use AroMVC\Core\Selectable;
use AroMVC\Models\Company;
$tmp = new Selectable("*");
$tmp->from("Companies")
->where("`name` = ?")
->or("`id` = ?")
->execute(["dekko", 12])
->asModels(new Company);