19 lines
387 B
PHP
19 lines
387 B
PHP
--TEST--
|
|
Calling or()
|
|
--FILE--
|
|
<?php
|
|
include_once dirname(__FILE__) . "/connect.inc.php";
|
|
|
|
$applications = $software->application()
|
|
->where("(author_id", 11)->and("maintainer_id", 11)->where(")")
|
|
->or("(author_id", 12)->and("maintainer_id", 12)->where(")")
|
|
;
|
|
|
|
foreach ($applications->order("title") as $application) {
|
|
echo "$application[title]\n";
|
|
}
|
|
?>
|
|
--EXPECTF--
|
|
Adminer
|
|
Dibi
|
|
Nette
|