コード例 #1
0
ファイル: and.php プロジェクト: shopping-adventure/RiakBundle
<?php

use Kbrw\RiakBundle\Model\MapReduce\Inputs;
$object = new Inputs();
$object->setBucket("invoices")->logicalAnd()->endsWith("0603")->startsWith("basho")->end();
コード例 #2
0
ファイル: not.php プロジェクト: shopping-adventure/RiakBundle
<?php

use Kbrw\RiakBundle\Model\MapReduce\Inputs;
$object = new Inputs();
$object->setBucket("invoices")->not()->endsWith("0603")->end();
コード例 #3
0
<?php

use Kbrw\RiakBundle\Model\MapReduce\Inputs;
$object = new Inputs();
$object->setBucket("invoices")->startsWith("foo");
コード例 #4
0
 public function filter($bucket)
 {
     return $this->inputs->setBucket($bucket);
 }