├── .gitignore ├── .scrutinizer.yml ├── .travis.yml ├── README.md ├── README.rus.md ├── composer.json ├── docs ├── LICENSE ├── eng │ ├── Decrement.md │ ├── Delete.md │ ├── Increment.md │ ├── Insert.md │ ├── OpenIndex.md │ ├── Select.md │ └── Update.md └── rus │ ├── Decrement.md │ ├── Delete.md │ ├── Increment.md │ ├── Insert.md │ ├── OpenIndex.md │ ├── Select.md │ └── Update.md ├── phpunit.xml.dist ├── src └── HS │ ├── Builder │ ├── DecrementQueryBuilder.php │ ├── DeleteQueryBuilder.php │ ├── FindQueryBuilderAbstract.php │ ├── IncrementQueryBuilder.php │ ├── InsertQueryBuilder.php │ ├── QueryBuilderAbstract.php │ ├── QueryBuilderInterface.php │ ├── SelectQueryBuilder.php │ └── UpdateQueryBuilder.php │ ├── CommonClient.php │ ├── Component │ ├── Comparison.php │ ├── ComparisonInterface.php │ ├── Filter.php │ └── InList.php │ ├── DatabaseManager.php │ ├── Driver.php │ ├── Error.php │ ├── Errors │ ├── AuthenticationError.php │ ├── ColumnParseError.php │ ├── CommandError.php │ ├── ComparisonOperatorError.php │ ├── FilterColumnError.php │ ├── FilterTypeError.php │ ├── InListSizeError.php │ ├── IndexOverFlowError.php │ ├── InternalMysqlError.php │ ├── KeyIndexError.php │ ├── KeyLengthError.php │ ├── LockTableError.php │ ├── ModifyOperatorError.php │ ├── OpenTableError.php │ ├── ReadOnlyError.php │ └── UnknownError.php │ ├── Exception │ ├── ComparisonException.php │ ├── Exception.php │ └── InvalidArgumentException.php │ ├── Manager.php │ ├── Query │ ├── AuthQuery.php │ ├── DecrementQuery.php │ ├── DeleteQuery.php │ ├── IncrementQuery.php │ ├── InsertQuery.php │ ├── ModifyQueryAbstract.php │ ├── ModifyStepQueryAbstract.php │ ├── OpenIndexQuery.php │ ├── QueryAbstract.php │ ├── QueryInterface.php │ ├── SelectQuery.php │ ├── TextQuery.php │ └── UpdateQuery.php │ ├── QueryBuilder.php │ ├── Reader.php │ ├── ReaderHSInterface.php │ ├── ReaderInterface.php │ ├── Result │ ├── AuthResult.php │ ├── DecrementResult.php │ ├── DeleteResult.php │ ├── IncrementResult.php │ ├── InsertResult.php │ ├── ModifyResultAbstract.php │ ├── OpenIndexResult.php │ ├── ResultAbstract.php │ ├── ResultInterface.php │ ├── SelectResult.php │ ├── TextResult.php │ └── UpdateResult.php │ ├── Validator.php │ ├── Writer.php │ └── WriterHSInterface.php └── tests ├── HS ├── Builder │ ├── DecrementQueryBuilderTest.php │ ├── DeleteQueryBuilderTest.php │ ├── IncrementQueryBuilderTest.php │ ├── InsertQueryBuilderTest.php │ ├── SelectQueryBuilderTest.php │ └── UpdateQueryBuilderTest.php ├── Component │ ├── ComparisonTest.php │ ├── FilterTest.php │ └── InListTest.php ├── Reader │ ├── AuthenticateTest.php │ ├── ConstructorTest.php │ ├── ErrorTest.php │ ├── OpenIndexTest.php │ ├── ReaderTest.php │ ├── SelectQueryTest.php │ └── TextQueryTest.php ├── TestCommon.php ├── TestWriterCommon.php └── Writer │ ├── DecrementQueryTest.php │ ├── DeleteQueryTest.php │ ├── IncrementQueryTest.php │ ├── InsertQueryTest.php │ └── UpdateQueryTest.php ├── bootstrap.php ├── resources ├── fixture │ ├── testBuilderMultiInsertFixture.yml │ ├── testBuilderSingleDecrementFixture.yml │ ├── testBuilderSingleDeleteFixture.yml │ ├── testBuilderSingleIncrementFixture.yml │ ├── testBuilderSingleInsertFixture.yml │ ├── testBuilderSingleUpdateFixture.yml │ ├── testBuilderSingleUpdateSuffixFixture.yml │ ├── testBuilderSingleUpdateSuffixWithNullValueFixture.yml │ ├── testFixedBugSingleIncrementFixture.yml │ ├── testSingleDecrementByIndexIdFixture.yml │ ├── testSingleDecrementFixture.yml │ ├── testSingleDeleteByIndexIdFixture.yml │ ├── testSingleDeleteFixture.yml │ ├── testSingleIncrementByIndexIdFixture.yml │ ├── testSingleIncrementFixture.yml │ ├── testSingleInsertByIndexIdFixture.yml │ ├── testSingleInsertFixture.yml │ ├── testSingleUpdateByIndexIdFixture.yml │ ├── testSingleUpdateFixture.yml │ └── testSingleUpdateWithSuffixFixture.yml ├── hs_table.yml └── preTests.sql └── travis ├── hs.cnf └── prepare.sh /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | /build/ 3 | /vendor/ 4 | composer.lock -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/README.md -------------------------------------------------------------------------------- /README.rus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/README.rus.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/composer.json -------------------------------------------------------------------------------- /docs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/docs/LICENSE -------------------------------------------------------------------------------- /docs/eng/Decrement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/docs/eng/Decrement.md -------------------------------------------------------------------------------- /docs/eng/Delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/docs/eng/Delete.md -------------------------------------------------------------------------------- /docs/eng/Increment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/docs/eng/Increment.md -------------------------------------------------------------------------------- /docs/eng/Insert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/docs/eng/Insert.md -------------------------------------------------------------------------------- /docs/eng/OpenIndex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/docs/eng/OpenIndex.md -------------------------------------------------------------------------------- /docs/eng/Select.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/docs/eng/Select.md -------------------------------------------------------------------------------- /docs/eng/Update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/docs/eng/Update.md -------------------------------------------------------------------------------- /docs/rus/Decrement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/docs/rus/Decrement.md -------------------------------------------------------------------------------- /docs/rus/Delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/docs/rus/Delete.md -------------------------------------------------------------------------------- /docs/rus/Increment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/docs/rus/Increment.md -------------------------------------------------------------------------------- /docs/rus/Insert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/docs/rus/Insert.md -------------------------------------------------------------------------------- /docs/rus/OpenIndex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/docs/rus/OpenIndex.md -------------------------------------------------------------------------------- /docs/rus/Select.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/docs/rus/Select.md -------------------------------------------------------------------------------- /docs/rus/Update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/docs/rus/Update.md -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/HS/Builder/DecrementQueryBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Builder/DecrementQueryBuilder.php -------------------------------------------------------------------------------- /src/HS/Builder/DeleteQueryBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Builder/DeleteQueryBuilder.php -------------------------------------------------------------------------------- /src/HS/Builder/FindQueryBuilderAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Builder/FindQueryBuilderAbstract.php -------------------------------------------------------------------------------- /src/HS/Builder/IncrementQueryBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Builder/IncrementQueryBuilder.php -------------------------------------------------------------------------------- /src/HS/Builder/InsertQueryBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Builder/InsertQueryBuilder.php -------------------------------------------------------------------------------- /src/HS/Builder/QueryBuilderAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Builder/QueryBuilderAbstract.php -------------------------------------------------------------------------------- /src/HS/Builder/QueryBuilderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Builder/QueryBuilderInterface.php -------------------------------------------------------------------------------- /src/HS/Builder/SelectQueryBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Builder/SelectQueryBuilder.php -------------------------------------------------------------------------------- /src/HS/Builder/UpdateQueryBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Builder/UpdateQueryBuilder.php -------------------------------------------------------------------------------- /src/HS/CommonClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/CommonClient.php -------------------------------------------------------------------------------- /src/HS/Component/Comparison.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Component/Comparison.php -------------------------------------------------------------------------------- /src/HS/Component/ComparisonInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Component/ComparisonInterface.php -------------------------------------------------------------------------------- /src/HS/Component/Filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Component/Filter.php -------------------------------------------------------------------------------- /src/HS/Component/InList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Component/InList.php -------------------------------------------------------------------------------- /src/HS/DatabaseManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/DatabaseManager.php -------------------------------------------------------------------------------- /src/HS/Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Driver.php -------------------------------------------------------------------------------- /src/HS/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Error.php -------------------------------------------------------------------------------- /src/HS/Errors/AuthenticationError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Errors/AuthenticationError.php -------------------------------------------------------------------------------- /src/HS/Errors/ColumnParseError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Errors/ColumnParseError.php -------------------------------------------------------------------------------- /src/HS/Errors/CommandError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Errors/CommandError.php -------------------------------------------------------------------------------- /src/HS/Errors/ComparisonOperatorError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Errors/ComparisonOperatorError.php -------------------------------------------------------------------------------- /src/HS/Errors/FilterColumnError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Errors/FilterColumnError.php -------------------------------------------------------------------------------- /src/HS/Errors/FilterTypeError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Errors/FilterTypeError.php -------------------------------------------------------------------------------- /src/HS/Errors/InListSizeError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Errors/InListSizeError.php -------------------------------------------------------------------------------- /src/HS/Errors/IndexOverFlowError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Errors/IndexOverFlowError.php -------------------------------------------------------------------------------- /src/HS/Errors/InternalMysqlError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Errors/InternalMysqlError.php -------------------------------------------------------------------------------- /src/HS/Errors/KeyIndexError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Errors/KeyIndexError.php -------------------------------------------------------------------------------- /src/HS/Errors/KeyLengthError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Errors/KeyLengthError.php -------------------------------------------------------------------------------- /src/HS/Errors/LockTableError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Errors/LockTableError.php -------------------------------------------------------------------------------- /src/HS/Errors/ModifyOperatorError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Errors/ModifyOperatorError.php -------------------------------------------------------------------------------- /src/HS/Errors/OpenTableError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Errors/OpenTableError.php -------------------------------------------------------------------------------- /src/HS/Errors/ReadOnlyError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Errors/ReadOnlyError.php -------------------------------------------------------------------------------- /src/HS/Errors/UnknownError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Errors/UnknownError.php -------------------------------------------------------------------------------- /src/HS/Exception/ComparisonException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Exception/ComparisonException.php -------------------------------------------------------------------------------- /src/HS/Exception/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Exception/Exception.php -------------------------------------------------------------------------------- /src/HS/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Exception/InvalidArgumentException.php -------------------------------------------------------------------------------- /src/HS/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Manager.php -------------------------------------------------------------------------------- /src/HS/Query/AuthQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Query/AuthQuery.php -------------------------------------------------------------------------------- /src/HS/Query/DecrementQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Query/DecrementQuery.php -------------------------------------------------------------------------------- /src/HS/Query/DeleteQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Query/DeleteQuery.php -------------------------------------------------------------------------------- /src/HS/Query/IncrementQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Query/IncrementQuery.php -------------------------------------------------------------------------------- /src/HS/Query/InsertQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Query/InsertQuery.php -------------------------------------------------------------------------------- /src/HS/Query/ModifyQueryAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Query/ModifyQueryAbstract.php -------------------------------------------------------------------------------- /src/HS/Query/ModifyStepQueryAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Query/ModifyStepQueryAbstract.php -------------------------------------------------------------------------------- /src/HS/Query/OpenIndexQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Query/OpenIndexQuery.php -------------------------------------------------------------------------------- /src/HS/Query/QueryAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Query/QueryAbstract.php -------------------------------------------------------------------------------- /src/HS/Query/QueryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Query/QueryInterface.php -------------------------------------------------------------------------------- /src/HS/Query/SelectQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Query/SelectQuery.php -------------------------------------------------------------------------------- /src/HS/Query/TextQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Query/TextQuery.php -------------------------------------------------------------------------------- /src/HS/Query/UpdateQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Query/UpdateQuery.php -------------------------------------------------------------------------------- /src/HS/QueryBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/QueryBuilder.php -------------------------------------------------------------------------------- /src/HS/Reader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Reader.php -------------------------------------------------------------------------------- /src/HS/ReaderHSInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/ReaderHSInterface.php -------------------------------------------------------------------------------- /src/HS/ReaderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/ReaderInterface.php -------------------------------------------------------------------------------- /src/HS/Result/AuthResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Result/AuthResult.php -------------------------------------------------------------------------------- /src/HS/Result/DecrementResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Result/DecrementResult.php -------------------------------------------------------------------------------- /src/HS/Result/DeleteResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Result/DeleteResult.php -------------------------------------------------------------------------------- /src/HS/Result/IncrementResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Result/IncrementResult.php -------------------------------------------------------------------------------- /src/HS/Result/InsertResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Result/InsertResult.php -------------------------------------------------------------------------------- /src/HS/Result/ModifyResultAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Result/ModifyResultAbstract.php -------------------------------------------------------------------------------- /src/HS/Result/OpenIndexResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Result/OpenIndexResult.php -------------------------------------------------------------------------------- /src/HS/Result/ResultAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Result/ResultAbstract.php -------------------------------------------------------------------------------- /src/HS/Result/ResultInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Result/ResultInterface.php -------------------------------------------------------------------------------- /src/HS/Result/SelectResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Result/SelectResult.php -------------------------------------------------------------------------------- /src/HS/Result/TextResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Result/TextResult.php -------------------------------------------------------------------------------- /src/HS/Result/UpdateResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Result/UpdateResult.php -------------------------------------------------------------------------------- /src/HS/Validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Validator.php -------------------------------------------------------------------------------- /src/HS/Writer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/Writer.php -------------------------------------------------------------------------------- /src/HS/WriterHSInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/src/HS/WriterHSInterface.php -------------------------------------------------------------------------------- /tests/HS/Builder/DecrementQueryBuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/HS/Builder/DecrementQueryBuilderTest.php -------------------------------------------------------------------------------- /tests/HS/Builder/DeleteQueryBuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/HS/Builder/DeleteQueryBuilderTest.php -------------------------------------------------------------------------------- /tests/HS/Builder/IncrementQueryBuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/HS/Builder/IncrementQueryBuilderTest.php -------------------------------------------------------------------------------- /tests/HS/Builder/InsertQueryBuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/HS/Builder/InsertQueryBuilderTest.php -------------------------------------------------------------------------------- /tests/HS/Builder/SelectQueryBuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/HS/Builder/SelectQueryBuilderTest.php -------------------------------------------------------------------------------- /tests/HS/Builder/UpdateQueryBuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/HS/Builder/UpdateQueryBuilderTest.php -------------------------------------------------------------------------------- /tests/HS/Component/ComparisonTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/HS/Component/ComparisonTest.php -------------------------------------------------------------------------------- /tests/HS/Component/FilterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/HS/Component/FilterTest.php -------------------------------------------------------------------------------- /tests/HS/Component/InListTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/HS/Component/InListTest.php -------------------------------------------------------------------------------- /tests/HS/Reader/AuthenticateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/HS/Reader/AuthenticateTest.php -------------------------------------------------------------------------------- /tests/HS/Reader/ConstructorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/HS/Reader/ConstructorTest.php -------------------------------------------------------------------------------- /tests/HS/Reader/ErrorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/HS/Reader/ErrorTest.php -------------------------------------------------------------------------------- /tests/HS/Reader/OpenIndexTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/HS/Reader/OpenIndexTest.php -------------------------------------------------------------------------------- /tests/HS/Reader/ReaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/HS/Reader/ReaderTest.php -------------------------------------------------------------------------------- /tests/HS/Reader/SelectQueryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/HS/Reader/SelectQueryTest.php -------------------------------------------------------------------------------- /tests/HS/Reader/TextQueryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/HS/Reader/TextQueryTest.php -------------------------------------------------------------------------------- /tests/HS/TestCommon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/HS/TestCommon.php -------------------------------------------------------------------------------- /tests/HS/TestWriterCommon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/HS/TestWriterCommon.php -------------------------------------------------------------------------------- /tests/HS/Writer/DecrementQueryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/HS/Writer/DecrementQueryTest.php -------------------------------------------------------------------------------- /tests/HS/Writer/DeleteQueryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/HS/Writer/DeleteQueryTest.php -------------------------------------------------------------------------------- /tests/HS/Writer/IncrementQueryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/HS/Writer/IncrementQueryTest.php -------------------------------------------------------------------------------- /tests/HS/Writer/InsertQueryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/HS/Writer/InsertQueryTest.php -------------------------------------------------------------------------------- /tests/HS/Writer/UpdateQueryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/HS/Writer/UpdateQueryTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/resources/fixture/testBuilderMultiInsertFixture.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/resources/fixture/testBuilderMultiInsertFixture.yml -------------------------------------------------------------------------------- /tests/resources/fixture/testBuilderSingleDecrementFixture.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/resources/fixture/testBuilderSingleDecrementFixture.yml -------------------------------------------------------------------------------- /tests/resources/fixture/testBuilderSingleDeleteFixture.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/resources/fixture/testBuilderSingleDeleteFixture.yml -------------------------------------------------------------------------------- /tests/resources/fixture/testBuilderSingleIncrementFixture.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/resources/fixture/testBuilderSingleIncrementFixture.yml -------------------------------------------------------------------------------- /tests/resources/fixture/testBuilderSingleInsertFixture.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/resources/fixture/testBuilderSingleInsertFixture.yml -------------------------------------------------------------------------------- /tests/resources/fixture/testBuilderSingleUpdateFixture.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/resources/fixture/testBuilderSingleUpdateFixture.yml -------------------------------------------------------------------------------- /tests/resources/fixture/testBuilderSingleUpdateSuffixFixture.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/resources/fixture/testBuilderSingleUpdateSuffixFixture.yml -------------------------------------------------------------------------------- /tests/resources/fixture/testBuilderSingleUpdateSuffixWithNullValueFixture.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/resources/fixture/testBuilderSingleUpdateSuffixWithNullValueFixture.yml -------------------------------------------------------------------------------- /tests/resources/fixture/testFixedBugSingleIncrementFixture.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/resources/fixture/testFixedBugSingleIncrementFixture.yml -------------------------------------------------------------------------------- /tests/resources/fixture/testSingleDecrementByIndexIdFixture.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/resources/fixture/testSingleDecrementByIndexIdFixture.yml -------------------------------------------------------------------------------- /tests/resources/fixture/testSingleDecrementFixture.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/resources/fixture/testSingleDecrementFixture.yml -------------------------------------------------------------------------------- /tests/resources/fixture/testSingleDeleteByIndexIdFixture.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/resources/fixture/testSingleDeleteByIndexIdFixture.yml -------------------------------------------------------------------------------- /tests/resources/fixture/testSingleDeleteFixture.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/resources/fixture/testSingleDeleteFixture.yml -------------------------------------------------------------------------------- /tests/resources/fixture/testSingleIncrementByIndexIdFixture.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/resources/fixture/testSingleIncrementByIndexIdFixture.yml -------------------------------------------------------------------------------- /tests/resources/fixture/testSingleIncrementFixture.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/resources/fixture/testSingleIncrementFixture.yml -------------------------------------------------------------------------------- /tests/resources/fixture/testSingleInsertByIndexIdFixture.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/resources/fixture/testSingleInsertByIndexIdFixture.yml -------------------------------------------------------------------------------- /tests/resources/fixture/testSingleInsertFixture.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/resources/fixture/testSingleInsertFixture.yml -------------------------------------------------------------------------------- /tests/resources/fixture/testSingleUpdateByIndexIdFixture.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/resources/fixture/testSingleUpdateByIndexIdFixture.yml -------------------------------------------------------------------------------- /tests/resources/fixture/testSingleUpdateFixture.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/resources/fixture/testSingleUpdateFixture.yml -------------------------------------------------------------------------------- /tests/resources/fixture/testSingleUpdateWithSuffixFixture.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/resources/fixture/testSingleUpdateWithSuffixFixture.yml -------------------------------------------------------------------------------- /tests/resources/hs_table.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/resources/hs_table.yml -------------------------------------------------------------------------------- /tests/resources/preTests.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/resources/preTests.sql -------------------------------------------------------------------------------- /tests/travis/hs.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/travis/hs.cnf -------------------------------------------------------------------------------- /tests/travis/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KonstantinKuklin/HandlerSocketLibrary/HEAD/tests/travis/prepare.sh --------------------------------------------------------------------------------