Go to the documentation of this file.00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00015 final class HttpUrlType extends ObjectType
00016 {
00017 public function getPrimitiveName()
00018 {
00019 return 'httpUrl';
00020 }
00021
00022 public function isGeneric()
00023 {
00024 return true;
00025 }
00026
00027 public function isMeasurable()
00028 {
00029 return true;
00030 }
00031
00032 public function toColumnType()
00033 {
00034 return 'DataType::create(DataType::VARCHAR)';
00035 }
00036 }
00037 ?>