├── .gitattributes ├── .gitignore ├── .gitmodules ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── RELNOTES.md ├── apigen.neon ├── composer.json ├── examples ├── MapDataModel.php ├── SimpleKV.php └── TimeSeries.php ├── phpunit.xml ├── src ├── Riak.php └── Riak │ ├── Api.php │ ├── Api │ ├── Exception.php │ ├── Http.php │ └── Http │ │ └── Translator │ │ ├── ObjectResponse.php │ │ └── SecondaryIndex.php │ ├── ApiInterface.php │ ├── Bucket.php │ ├── Command.php │ ├── Command │ ├── Bucket │ │ ├── Delete.php │ │ ├── Fetch.php │ │ ├── Response.php │ │ └── Store.php │ ├── Builder.php │ ├── Builder │ │ ├── BucketTrait.php │ │ ├── DeleteObject.php │ │ ├── Exception.php │ │ ├── FetchBucketProperties.php │ │ ├── FetchCounter.php │ │ ├── FetchHll.php │ │ ├── FetchMap.php │ │ ├── FetchObject.php │ │ ├── FetchPreflist.php │ │ ├── FetchSet.php │ │ ├── FetchStats.php │ │ ├── IncrementCounter.php │ │ ├── IndexTrait.php │ │ ├── ListObjects.php │ │ ├── LocationTrait.php │ │ ├── MapReduce │ │ │ └── FetchObjects.php │ │ ├── ObjectTrait.php │ │ ├── Ping.php │ │ ├── QueryIndex.php │ │ ├── Search │ │ │ ├── AssociateIndex.php │ │ │ ├── DeleteIndex.php │ │ │ ├── DissociateIndex.php │ │ │ ├── FetchIndex.php │ │ │ ├── FetchObjects.php │ │ │ ├── FetchSchema.php │ │ │ ├── StoreIndex.php │ │ │ └── StoreSchema.php │ │ ├── SetBucketProperties.php │ │ ├── StoreObject.php │ │ ├── TimeSeries │ │ │ ├── DeleteRow.php │ │ │ ├── DescribeTable.php │ │ │ ├── FetchRow.php │ │ │ ├── KeyTrait.php │ │ │ ├── Query.php │ │ │ ├── RowsTrait.php │ │ │ ├── StoreRows.php │ │ │ └── TableTrait.php │ │ ├── UpdateGSet.php │ │ ├── UpdateHll.php │ │ ├── UpdateMap.php │ │ └── UpdateSet.php │ ├── BuilderInterface.php │ ├── DataType │ │ ├── Counter │ │ │ ├── Fetch.php │ │ │ ├── Response.php │ │ │ └── Store.php │ │ ├── GSet │ │ │ └── Store.php │ │ ├── Hll │ │ │ ├── Fetch.php │ │ │ ├── Response.php │ │ │ └── Store.php │ │ ├── Map │ │ │ ├── Fetch.php │ │ │ ├── Response.php │ │ │ └── Store.php │ │ └── Set │ │ │ ├── Fetch.php │ │ │ ├── Response.php │ │ │ └── Store.php │ ├── Exception.php │ ├── Indexes │ │ ├── Query.php │ │ └── Response.php │ ├── MapReduce │ │ ├── Fetch.php │ │ └── Response.php │ ├── Object.php │ ├── Object │ │ ├── Delete.php │ │ ├── Fetch.php │ │ ├── FetchPreflist.php │ │ ├── Keys │ │ │ ├── Fetch.php │ │ │ └── Response.php │ │ ├── Response.php │ │ └── Store.php │ ├── Ping.php │ ├── Response.php │ ├── Search │ │ ├── Fetch.php │ │ ├── Index │ │ │ ├── Delete.php │ │ │ ├── Fetch.php │ │ │ ├── Response.php │ │ │ └── Store.php │ │ ├── Response.php │ │ └── Schema │ │ │ ├── Fetch.php │ │ │ ├── Response.php │ │ │ └── Store.php │ ├── Stats.php │ ├── Stats │ │ └── Response.php │ └── TimeSeries │ │ ├── Delete.php │ │ ├── Fetch.php │ │ ├── Query │ │ ├── Fetch.php │ │ └── Response.php │ │ ├── Response.php │ │ └── Store.php │ ├── CommandInterface.php │ ├── DataType.php │ ├── DataType │ ├── Counter.php │ ├── Exception.php │ ├── Hll.php │ ├── Map.php │ └── Set.php │ ├── Exception.php │ ├── HeadersTrait.php │ ├── Location.php │ ├── Node.php │ ├── Node │ ├── Builder.php │ ├── Builder │ │ └── Exception.php │ └── Config.php │ ├── Object.php │ ├── Search │ └── Doc.php │ └── TimeSeries │ └── Cell.php └── tests ├── Basho_Man_Super.png ├── TestCase.php ├── TimeSeriesTrait.php ├── functional ├── BucketOperationsTest.php ├── CounterOperationsTest.php ├── GSetOperationsTest.php ├── HllOperationsTest.php ├── MapOperationsTest.php ├── MapReduceOperationsTest.php ├── ObjectOperationsTest.php ├── PingTest.php ├── PreflistTest.php ├── SearchOperationsTest.php ├── SecondaryIndexOperationsTest.php ├── SecurityFeaturesTest.php ├── SetOperationsTest.php └── TimeSeriesOperationsTest.php ├── scenario ├── EncodedDataTest.php ├── InternalServerErrorTest.php ├── NodeUnreachableTest.php └── ObjectConflictTest.php └── unit ├── Riak ├── Api │ └── Translator │ │ └── SecondaryIndexTest.php ├── Command │ └── Builder │ │ ├── FetchCounterTest.php │ │ ├── FetchHllTest.php │ │ ├── FetchMapTest.php │ │ ├── FetchObjectTest.php │ │ ├── FetchSetTest.php │ │ ├── IncrementCounterTest.php │ │ ├── ListObjectsTest.php │ │ ├── QueryIndexTest.php │ │ ├── StoreObjectTest.php │ │ ├── TimeSeries │ │ ├── DeleteRowTest.php │ │ ├── DescribeTableTest.php │ │ ├── FetchRowTest.php │ │ ├── QueryTest.php │ │ └── StoreRowsTest.php │ │ ├── UpdateGSetTest.php │ │ ├── UpdateHllTest.php │ │ ├── UpdateMapTest.php │ │ └── UpdateSetTest.php ├── DataType │ ├── CounterTest.php │ ├── HllTest.php │ ├── MapTest.php │ └── SetTest.php ├── Node │ └── BuilderTest.php ├── NodeTest.php ├── ObjectTest.php └── Search │ └── DocTest.php └── RiakTest.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/README.md -------------------------------------------------------------------------------- /RELNOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/RELNOTES.md -------------------------------------------------------------------------------- /apigen.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/apigen.neon -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/composer.json -------------------------------------------------------------------------------- /examples/MapDataModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/examples/MapDataModel.php -------------------------------------------------------------------------------- /examples/SimpleKV.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/examples/SimpleKV.php -------------------------------------------------------------------------------- /examples/TimeSeries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/examples/TimeSeries.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Riak.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak.php -------------------------------------------------------------------------------- /src/Riak/Api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Api.php -------------------------------------------------------------------------------- /src/Riak/Api/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Api/Exception.php -------------------------------------------------------------------------------- /src/Riak/Api/Http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Api/Http.php -------------------------------------------------------------------------------- /src/Riak/Api/Http/Translator/ObjectResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Api/Http/Translator/ObjectResponse.php -------------------------------------------------------------------------------- /src/Riak/Api/Http/Translator/SecondaryIndex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Api/Http/Translator/SecondaryIndex.php -------------------------------------------------------------------------------- /src/Riak/ApiInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/ApiInterface.php -------------------------------------------------------------------------------- /src/Riak/Bucket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Bucket.php -------------------------------------------------------------------------------- /src/Riak/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command.php -------------------------------------------------------------------------------- /src/Riak/Command/Bucket/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Bucket/Delete.php -------------------------------------------------------------------------------- /src/Riak/Command/Bucket/Fetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Bucket/Fetch.php -------------------------------------------------------------------------------- /src/Riak/Command/Bucket/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Bucket/Response.php -------------------------------------------------------------------------------- /src/Riak/Command/Bucket/Store.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Bucket/Store.php -------------------------------------------------------------------------------- /src/Riak/Command/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Builder.php -------------------------------------------------------------------------------- /src/Riak/Command/Builder/BucketTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Builder/BucketTrait.php -------------------------------------------------------------------------------- /src/Riak/Command/Builder/DeleteObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Builder/DeleteObject.php -------------------------------------------------------------------------------- /src/Riak/Command/Builder/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Builder/Exception.php -------------------------------------------------------------------------------- /src/Riak/Command/Builder/FetchBucketProperties.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Builder/FetchBucketProperties.php -------------------------------------------------------------------------------- /src/Riak/Command/Builder/FetchCounter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Builder/FetchCounter.php -------------------------------------------------------------------------------- /src/Riak/Command/Builder/FetchHll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Builder/FetchHll.php -------------------------------------------------------------------------------- /src/Riak/Command/Builder/FetchMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Builder/FetchMap.php -------------------------------------------------------------------------------- /src/Riak/Command/Builder/FetchObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Builder/FetchObject.php -------------------------------------------------------------------------------- /src/Riak/Command/Builder/FetchPreflist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Builder/FetchPreflist.php -------------------------------------------------------------------------------- /src/Riak/Command/Builder/FetchSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Builder/FetchSet.php -------------------------------------------------------------------------------- /src/Riak/Command/Builder/FetchStats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Builder/FetchStats.php -------------------------------------------------------------------------------- /src/Riak/Command/Builder/IncrementCounter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Builder/IncrementCounter.php -------------------------------------------------------------------------------- /src/Riak/Command/Builder/IndexTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Builder/IndexTrait.php -------------------------------------------------------------------------------- /src/Riak/Command/Builder/ListObjects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Builder/ListObjects.php -------------------------------------------------------------------------------- /src/Riak/Command/Builder/LocationTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Builder/LocationTrait.php -------------------------------------------------------------------------------- /src/Riak/Command/Builder/MapReduce/FetchObjects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Builder/MapReduce/FetchObjects.php -------------------------------------------------------------------------------- /src/Riak/Command/Builder/ObjectTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Builder/ObjectTrait.php -------------------------------------------------------------------------------- /src/Riak/Command/Builder/Ping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Builder/Ping.php -------------------------------------------------------------------------------- /src/Riak/Command/Builder/QueryIndex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Builder/QueryIndex.php -------------------------------------------------------------------------------- /src/Riak/Command/Builder/Search/AssociateIndex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Builder/Search/AssociateIndex.php -------------------------------------------------------------------------------- /src/Riak/Command/Builder/Search/DeleteIndex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Builder/Search/DeleteIndex.php -------------------------------------------------------------------------------- /src/Riak/Command/Builder/Search/DissociateIndex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Builder/Search/DissociateIndex.php -------------------------------------------------------------------------------- /src/Riak/Command/Builder/Search/FetchIndex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Builder/Search/FetchIndex.php -------------------------------------------------------------------------------- /src/Riak/Command/Builder/Search/FetchObjects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Builder/Search/FetchObjects.php -------------------------------------------------------------------------------- /src/Riak/Command/Builder/Search/FetchSchema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Builder/Search/FetchSchema.php -------------------------------------------------------------------------------- /src/Riak/Command/Builder/Search/StoreIndex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Builder/Search/StoreIndex.php -------------------------------------------------------------------------------- /src/Riak/Command/Builder/Search/StoreSchema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Builder/Search/StoreSchema.php -------------------------------------------------------------------------------- /src/Riak/Command/Builder/SetBucketProperties.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Builder/SetBucketProperties.php -------------------------------------------------------------------------------- /src/Riak/Command/Builder/StoreObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Builder/StoreObject.php -------------------------------------------------------------------------------- /src/Riak/Command/Builder/TimeSeries/DeleteRow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Builder/TimeSeries/DeleteRow.php -------------------------------------------------------------------------------- /src/Riak/Command/Builder/TimeSeries/DescribeTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Builder/TimeSeries/DescribeTable.php -------------------------------------------------------------------------------- /src/Riak/Command/Builder/TimeSeries/FetchRow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Builder/TimeSeries/FetchRow.php -------------------------------------------------------------------------------- /src/Riak/Command/Builder/TimeSeries/KeyTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Builder/TimeSeries/KeyTrait.php -------------------------------------------------------------------------------- /src/Riak/Command/Builder/TimeSeries/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Builder/TimeSeries/Query.php -------------------------------------------------------------------------------- /src/Riak/Command/Builder/TimeSeries/RowsTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Builder/TimeSeries/RowsTrait.php -------------------------------------------------------------------------------- /src/Riak/Command/Builder/TimeSeries/StoreRows.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Builder/TimeSeries/StoreRows.php -------------------------------------------------------------------------------- /src/Riak/Command/Builder/TimeSeries/TableTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Builder/TimeSeries/TableTrait.php -------------------------------------------------------------------------------- /src/Riak/Command/Builder/UpdateGSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Builder/UpdateGSet.php -------------------------------------------------------------------------------- /src/Riak/Command/Builder/UpdateHll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Builder/UpdateHll.php -------------------------------------------------------------------------------- /src/Riak/Command/Builder/UpdateMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Builder/UpdateMap.php -------------------------------------------------------------------------------- /src/Riak/Command/Builder/UpdateSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Builder/UpdateSet.php -------------------------------------------------------------------------------- /src/Riak/Command/BuilderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/BuilderInterface.php -------------------------------------------------------------------------------- /src/Riak/Command/DataType/Counter/Fetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/DataType/Counter/Fetch.php -------------------------------------------------------------------------------- /src/Riak/Command/DataType/Counter/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/DataType/Counter/Response.php -------------------------------------------------------------------------------- /src/Riak/Command/DataType/Counter/Store.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/DataType/Counter/Store.php -------------------------------------------------------------------------------- /src/Riak/Command/DataType/GSet/Store.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/DataType/GSet/Store.php -------------------------------------------------------------------------------- /src/Riak/Command/DataType/Hll/Fetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/DataType/Hll/Fetch.php -------------------------------------------------------------------------------- /src/Riak/Command/DataType/Hll/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/DataType/Hll/Response.php -------------------------------------------------------------------------------- /src/Riak/Command/DataType/Hll/Store.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/DataType/Hll/Store.php -------------------------------------------------------------------------------- /src/Riak/Command/DataType/Map/Fetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/DataType/Map/Fetch.php -------------------------------------------------------------------------------- /src/Riak/Command/DataType/Map/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/DataType/Map/Response.php -------------------------------------------------------------------------------- /src/Riak/Command/DataType/Map/Store.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/DataType/Map/Store.php -------------------------------------------------------------------------------- /src/Riak/Command/DataType/Set/Fetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/DataType/Set/Fetch.php -------------------------------------------------------------------------------- /src/Riak/Command/DataType/Set/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/DataType/Set/Response.php -------------------------------------------------------------------------------- /src/Riak/Command/DataType/Set/Store.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/DataType/Set/Store.php -------------------------------------------------------------------------------- /src/Riak/Command/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Exception.php -------------------------------------------------------------------------------- /src/Riak/Command/Indexes/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Indexes/Query.php -------------------------------------------------------------------------------- /src/Riak/Command/Indexes/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Indexes/Response.php -------------------------------------------------------------------------------- /src/Riak/Command/MapReduce/Fetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/MapReduce/Fetch.php -------------------------------------------------------------------------------- /src/Riak/Command/MapReduce/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/MapReduce/Response.php -------------------------------------------------------------------------------- /src/Riak/Command/Object.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Object.php -------------------------------------------------------------------------------- /src/Riak/Command/Object/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Object/Delete.php -------------------------------------------------------------------------------- /src/Riak/Command/Object/Fetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Object/Fetch.php -------------------------------------------------------------------------------- /src/Riak/Command/Object/FetchPreflist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Object/FetchPreflist.php -------------------------------------------------------------------------------- /src/Riak/Command/Object/Keys/Fetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Object/Keys/Fetch.php -------------------------------------------------------------------------------- /src/Riak/Command/Object/Keys/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Object/Keys/Response.php -------------------------------------------------------------------------------- /src/Riak/Command/Object/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Object/Response.php -------------------------------------------------------------------------------- /src/Riak/Command/Object/Store.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Object/Store.php -------------------------------------------------------------------------------- /src/Riak/Command/Ping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Ping.php -------------------------------------------------------------------------------- /src/Riak/Command/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Response.php -------------------------------------------------------------------------------- /src/Riak/Command/Search/Fetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Search/Fetch.php -------------------------------------------------------------------------------- /src/Riak/Command/Search/Index/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Search/Index/Delete.php -------------------------------------------------------------------------------- /src/Riak/Command/Search/Index/Fetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Search/Index/Fetch.php -------------------------------------------------------------------------------- /src/Riak/Command/Search/Index/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Search/Index/Response.php -------------------------------------------------------------------------------- /src/Riak/Command/Search/Index/Store.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Search/Index/Store.php -------------------------------------------------------------------------------- /src/Riak/Command/Search/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Search/Response.php -------------------------------------------------------------------------------- /src/Riak/Command/Search/Schema/Fetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Search/Schema/Fetch.php -------------------------------------------------------------------------------- /src/Riak/Command/Search/Schema/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Search/Schema/Response.php -------------------------------------------------------------------------------- /src/Riak/Command/Search/Schema/Store.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Search/Schema/Store.php -------------------------------------------------------------------------------- /src/Riak/Command/Stats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Stats.php -------------------------------------------------------------------------------- /src/Riak/Command/Stats/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/Stats/Response.php -------------------------------------------------------------------------------- /src/Riak/Command/TimeSeries/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/TimeSeries/Delete.php -------------------------------------------------------------------------------- /src/Riak/Command/TimeSeries/Fetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/TimeSeries/Fetch.php -------------------------------------------------------------------------------- /src/Riak/Command/TimeSeries/Query/Fetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/TimeSeries/Query/Fetch.php -------------------------------------------------------------------------------- /src/Riak/Command/TimeSeries/Query/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/TimeSeries/Query/Response.php -------------------------------------------------------------------------------- /src/Riak/Command/TimeSeries/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/TimeSeries/Response.php -------------------------------------------------------------------------------- /src/Riak/Command/TimeSeries/Store.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Command/TimeSeries/Store.php -------------------------------------------------------------------------------- /src/Riak/CommandInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/CommandInterface.php -------------------------------------------------------------------------------- /src/Riak/DataType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/DataType.php -------------------------------------------------------------------------------- /src/Riak/DataType/Counter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/DataType/Counter.php -------------------------------------------------------------------------------- /src/Riak/DataType/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/DataType/Exception.php -------------------------------------------------------------------------------- /src/Riak/DataType/Hll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/DataType/Hll.php -------------------------------------------------------------------------------- /src/Riak/DataType/Map.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/DataType/Map.php -------------------------------------------------------------------------------- /src/Riak/DataType/Set.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/DataType/Set.php -------------------------------------------------------------------------------- /src/Riak/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Exception.php -------------------------------------------------------------------------------- /src/Riak/HeadersTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/HeadersTrait.php -------------------------------------------------------------------------------- /src/Riak/Location.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Location.php -------------------------------------------------------------------------------- /src/Riak/Node.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Node.php -------------------------------------------------------------------------------- /src/Riak/Node/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Node/Builder.php -------------------------------------------------------------------------------- /src/Riak/Node/Builder/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Node/Builder/Exception.php -------------------------------------------------------------------------------- /src/Riak/Node/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Node/Config.php -------------------------------------------------------------------------------- /src/Riak/Object.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Object.php -------------------------------------------------------------------------------- /src/Riak/Search/Doc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/Search/Doc.php -------------------------------------------------------------------------------- /src/Riak/TimeSeries/Cell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/src/Riak/TimeSeries/Cell.php -------------------------------------------------------------------------------- /tests/Basho_Man_Super.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/Basho_Man_Super.png -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/TimeSeriesTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/TimeSeriesTrait.php -------------------------------------------------------------------------------- /tests/functional/BucketOperationsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/functional/BucketOperationsTest.php -------------------------------------------------------------------------------- /tests/functional/CounterOperationsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/functional/CounterOperationsTest.php -------------------------------------------------------------------------------- /tests/functional/GSetOperationsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/functional/GSetOperationsTest.php -------------------------------------------------------------------------------- /tests/functional/HllOperationsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/functional/HllOperationsTest.php -------------------------------------------------------------------------------- /tests/functional/MapOperationsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/functional/MapOperationsTest.php -------------------------------------------------------------------------------- /tests/functional/MapReduceOperationsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/functional/MapReduceOperationsTest.php -------------------------------------------------------------------------------- /tests/functional/ObjectOperationsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/functional/ObjectOperationsTest.php -------------------------------------------------------------------------------- /tests/functional/PingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/functional/PingTest.php -------------------------------------------------------------------------------- /tests/functional/PreflistTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/functional/PreflistTest.php -------------------------------------------------------------------------------- /tests/functional/SearchOperationsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/functional/SearchOperationsTest.php -------------------------------------------------------------------------------- /tests/functional/SecondaryIndexOperationsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/functional/SecondaryIndexOperationsTest.php -------------------------------------------------------------------------------- /tests/functional/SecurityFeaturesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/functional/SecurityFeaturesTest.php -------------------------------------------------------------------------------- /tests/functional/SetOperationsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/functional/SetOperationsTest.php -------------------------------------------------------------------------------- /tests/functional/TimeSeriesOperationsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/functional/TimeSeriesOperationsTest.php -------------------------------------------------------------------------------- /tests/scenario/EncodedDataTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/scenario/EncodedDataTest.php -------------------------------------------------------------------------------- /tests/scenario/InternalServerErrorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/scenario/InternalServerErrorTest.php -------------------------------------------------------------------------------- /tests/scenario/NodeUnreachableTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/scenario/NodeUnreachableTest.php -------------------------------------------------------------------------------- /tests/scenario/ObjectConflictTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/scenario/ObjectConflictTest.php -------------------------------------------------------------------------------- /tests/unit/Riak/Api/Translator/SecondaryIndexTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/unit/Riak/Api/Translator/SecondaryIndexTest.php -------------------------------------------------------------------------------- /tests/unit/Riak/Command/Builder/FetchCounterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/unit/Riak/Command/Builder/FetchCounterTest.php -------------------------------------------------------------------------------- /tests/unit/Riak/Command/Builder/FetchHllTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/unit/Riak/Command/Builder/FetchHllTest.php -------------------------------------------------------------------------------- /tests/unit/Riak/Command/Builder/FetchMapTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/unit/Riak/Command/Builder/FetchMapTest.php -------------------------------------------------------------------------------- /tests/unit/Riak/Command/Builder/FetchObjectTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/unit/Riak/Command/Builder/FetchObjectTest.php -------------------------------------------------------------------------------- /tests/unit/Riak/Command/Builder/FetchSetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/unit/Riak/Command/Builder/FetchSetTest.php -------------------------------------------------------------------------------- /tests/unit/Riak/Command/Builder/IncrementCounterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/unit/Riak/Command/Builder/IncrementCounterTest.php -------------------------------------------------------------------------------- /tests/unit/Riak/Command/Builder/ListObjectsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/unit/Riak/Command/Builder/ListObjectsTest.php -------------------------------------------------------------------------------- /tests/unit/Riak/Command/Builder/QueryIndexTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/unit/Riak/Command/Builder/QueryIndexTest.php -------------------------------------------------------------------------------- /tests/unit/Riak/Command/Builder/StoreObjectTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/unit/Riak/Command/Builder/StoreObjectTest.php -------------------------------------------------------------------------------- /tests/unit/Riak/Command/Builder/TimeSeries/DeleteRowTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/unit/Riak/Command/Builder/TimeSeries/DeleteRowTest.php -------------------------------------------------------------------------------- /tests/unit/Riak/Command/Builder/TimeSeries/DescribeTableTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/unit/Riak/Command/Builder/TimeSeries/DescribeTableTest.php -------------------------------------------------------------------------------- /tests/unit/Riak/Command/Builder/TimeSeries/FetchRowTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/unit/Riak/Command/Builder/TimeSeries/FetchRowTest.php -------------------------------------------------------------------------------- /tests/unit/Riak/Command/Builder/TimeSeries/QueryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/unit/Riak/Command/Builder/TimeSeries/QueryTest.php -------------------------------------------------------------------------------- /tests/unit/Riak/Command/Builder/TimeSeries/StoreRowsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/unit/Riak/Command/Builder/TimeSeries/StoreRowsTest.php -------------------------------------------------------------------------------- /tests/unit/Riak/Command/Builder/UpdateGSetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/unit/Riak/Command/Builder/UpdateGSetTest.php -------------------------------------------------------------------------------- /tests/unit/Riak/Command/Builder/UpdateHllTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/unit/Riak/Command/Builder/UpdateHllTest.php -------------------------------------------------------------------------------- /tests/unit/Riak/Command/Builder/UpdateMapTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/unit/Riak/Command/Builder/UpdateMapTest.php -------------------------------------------------------------------------------- /tests/unit/Riak/Command/Builder/UpdateSetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/unit/Riak/Command/Builder/UpdateSetTest.php -------------------------------------------------------------------------------- /tests/unit/Riak/DataType/CounterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/unit/Riak/DataType/CounterTest.php -------------------------------------------------------------------------------- /tests/unit/Riak/DataType/HllTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/unit/Riak/DataType/HllTest.php -------------------------------------------------------------------------------- /tests/unit/Riak/DataType/MapTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/unit/Riak/DataType/MapTest.php -------------------------------------------------------------------------------- /tests/unit/Riak/DataType/SetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/unit/Riak/DataType/SetTest.php -------------------------------------------------------------------------------- /tests/unit/Riak/Node/BuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/unit/Riak/Node/BuilderTest.php -------------------------------------------------------------------------------- /tests/unit/Riak/NodeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/unit/Riak/NodeTest.php -------------------------------------------------------------------------------- /tests/unit/Riak/ObjectTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/unit/Riak/ObjectTest.php -------------------------------------------------------------------------------- /tests/unit/Riak/Search/DocTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/unit/Riak/Search/DocTest.php -------------------------------------------------------------------------------- /tests/unit/RiakTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/basho/riak-php-client/HEAD/tests/unit/RiakTest.php --------------------------------------------------------------------------------