@@ -30,92 +30,92 @@ interface Type
3030 final static function varchar () {}
3131
3232 /**
33- * Get representation of cassandra varchar type
34- * @return Cassandra\Type varchar type
33+ * Get representation of cassandra text type
34+ * @return Cassandra\Type text type
3535 */
3636 final static function text () {}
3737
3838 /**
39- * Get representation of cassandra varchar type
40- * @return Cassandra\Type varchar type
39+ * Get representation of cassandra blob type
40+ * @return Cassandra\Type blob type
4141 */
4242 final static function blob () {}
4343
4444 /**
45- * Get representation of cassandra varchar type
46- * @return Cassandra\Type varchar type
45+ * Get representation of cassandra ascii type
46+ * @return Cassandra\Type ascii type
4747 */
4848 final static function ascii () {}
4949
5050 /**
51- * Get representation of cassandra varchar type
52- * @return Cassandra\Type varchar type
51+ * Get representation of cassandra bigint type
52+ * @return Cassandra\Type bigint type
5353 */
5454 final static function bigint () {}
5555
5656 /**
57- * Get representation of cassandra varchar type
58- * @return Cassandra\Type varchar type
57+ * Get representation of cassandra counter type
58+ * @return Cassandra\Type counter type
5959 */
6060 final static function counter () {}
6161
6262 /**
63- * Get representation of cassandra varchar type
64- * @return Cassandra\Type varchar type
63+ * Get representation of cassandra int type
64+ * @return Cassandra\Type int type
6565 */
6666 final static function int () {}
6767
6868 /**
69- * Get representation of cassandra varchar type
70- * @return Cassandra\Type varchar type
69+ * Get representation of cassandra varint type
70+ * @return Cassandra\Type varint type
7171 */
7272 final static function varint () {}
7373
7474 /**
75- * Get representation of cassandra varchar type
76- * @return Cassandra\Type varchar type
75+ * Get representation of cassandra boolean type
76+ * @return Cassandra\Type boolean type
7777 */
7878 final static function boolean () {}
7979
8080 /**
81- * Get representation of cassandra varchar type
82- * @return Cassandra\Type varchar type
81+ * Get representation of cassandra decimal type
82+ * @return Cassandra\Type decimal type
8383 */
8484 final static function decimal () {}
8585
8686 /**
87- * Get representation of cassandra varchar type
88- * @return Cassandra\Type varchar type
87+ * Get representation of cassandra double type
88+ * @return Cassandra\Type double type
8989 */
9090 final static function double () {}
9191
9292 /**
93- * Get representation of cassandra varchar type
94- * @return Cassandra\Type varchar type
93+ * Get representation of cassandra float type
94+ * @return Cassandra\Type float type
9595 */
9696 final static function float () {}
9797
9898 /**
99- * Get representation of cassandra varchar type
100- * @return Cassandra\Type varchar type
99+ * Get representation of cassandra inet type
100+ * @return Cassandra\Type inet type
101101 */
102102 final static function inet () {}
103103
104104 /**
105- * Get representation of cassandra varchar type
106- * @return Cassandra\Type varchar type
105+ * Get representation of cassandra timestamp type
106+ * @return Cassandra\Type timestamp type
107107 */
108108 final static function timestamp () {}
109109
110110 /**
111- * Get representation of cassandra varchar type
112- * @return Cassandra\Type varchar type
111+ * Get representation of cassandra uuid type
112+ * @return Cassandra\Type uuid type
113113 */
114114 final static function uuid () {}
115115
116116 /**
117- * Get representation of cassandra varchar type
118- * @return Cassandra\Type varchar type
117+ * Get representation of cassandra timeuuid type
118+ * @return Cassandra\Type timeuuid type
119119 */
120120 final static function timeuuid () {}
121121
@@ -171,13 +171,13 @@ final static function set(Type $type) {}
171171 * Returns the name of this type as string.
172172 * @return string Name of this type
173173 */
174- function name ();
174+ function name () {}
175175
176176 /**
177177 * Returns string representation of this type.
178178 * @return string String representation of this type
179179 */
180- function __toString ();
180+ function __toString () {}
181181
182182 /**
183183 * Instantiate a value of this type from provided value(s).
@@ -188,5 +188,5 @@ function __toString();
188188 * @param mixed $value,... one or more values to coerce into this type
189189 * @return mixed a value of this type
190190 */
191- function create ($ value = null );
191+ function create ($ value = null ) {}
192192}
0 commit comments