Completed
Push — master ( 50e6f7...b41598 )
by
unknown
03:16
created
src/Request/Batch.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -1,8 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 namespace Cassandra\Request;
3 3
 use Cassandra\Protocol\Frame;
4
-use Cassandra\Protocol;
5
-use Cassandra\Connection;
6 4
 use Cassandra\Type;
7 5
 
8 6
 class Batch extends Request{
Please login to merge, or discard this patch.
src/Response/Result.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,5 @@
 block discarded – undo
1 1
 <?php 
2 2
 namespace Cassandra\Response;
3
-use Cassandra\Protocol\Frame;
4
-use Cassandra\Type;
5 3
 
6 4
 class Result extends Response implements \IteratorAggregate {
7 5
     const VOID = 0x0001;
Please login to merge, or discard this patch.
src/Type/Base.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -114,6 +114,9 @@
 block discarded – undo
114 114
         return (string) $this->_value;
115 115
     }
116 116
     
117
+    /**
118
+     * @return string
119
+     */
117 120
     public static function getBinaryByType($dataType, $value){
118 121
         if (is_array($dataType)){
119 122
             if (!isset($dataType['definition']))
Please login to merge, or discard this patch.