Completed
Push — master ( 406fce...23d461 )
by Damian
8s
created
code/MSSQLDatabase.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
      * Checks whether the current SQL Server version has full-text
124 124
      * support installed and full-text is enabled for this database.
125 125
      *
126
-     * @return boolean
126
+     * @return string|boolean
127 127
      */
128 128
     public function fullTextEnabled()
129 129
     {
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
      * Checks whether the current SQL Server version has full-text
138 138
      * support installed and full-text is enabled for this database.
139 139
      *
140
-     * @return boolean
140
+     * @return false|string
141 141
      */
142 142
     protected function updateFullTextEnabled()
143 143
     {
Please login to merge, or discard this patch.
code/MSSQLSchemaManager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@
 block discarded – undo
97 97
      * Check if a fulltext index exists on a particular table name.
98 98
      *
99 99
      * @param string $tableName
100
-     * @return boolean TRUE index exists | FALSE index does not exist | NULL no support
100
+     * @return null|boolean TRUE index exists | FALSE index does not exist | NULL no support
101 101
      */
102 102
     public function fulltextIndexExists($tableName)
103 103
     {
Please login to merge, or discard this patch.