@@ -39,7 +39,6 @@ abstract class Driver implements EventListenerInterface
3939 /**
4040 * Construct
4141 * @param \Cake\Datasource\ConnectionInterface $connection A connection object
42- * @uses $connection
4342 */
4443 public function __construct ($ connection )
4544 {
@@ -122,8 +121,6 @@ public function beforeImport(): bool
122121 * Gets the executable command to export the database, with compression
123122 * @param string $filename Filename where you want to export the database
124123 * @return string
125- * @uses _exportExecutable()
126- * @uses getBinary()
127124 */
128125 protected function _exportExecutableWithCompression (string $ filename ): string
129126 {
@@ -146,8 +143,6 @@ protected function _exportExecutableWithCompression(string $filename): string
146143 * Gets the executable command to import the database, with compression
147144 * @param string $filename Filename from which you want to import the database
148145 * @return string
149- * @uses _importExecutable()
150- * @uses getBinary()
151146 */
152147 protected function _importExecutableWithCompression (string $ filename ): string
153148 {
@@ -174,9 +169,8 @@ protected function _importExecutableWithCompression(string $filename): string
174169 * - Backup.beforeExport: will be triggered before export
175170 * - Backup.afterExport: will be triggered after export
176171 * @param string $filename Filename where you want to export the database
177- * @return bool true on success
172+ * @return bool ` true` on success
178173 * @throws \Exception
179- * @uses _exportExecutableWithCompression()
180174 */
181175 final public function export (string $ filename ): bool
182176 {
@@ -212,7 +206,6 @@ public function getBinary(string $name): string
212206 * @return mixed Config value, `null` if the key doesn't exist
213207 * or all config values if no key was specified
214208 * @since 2.3.0
215- * @uses $connection
216209 */
217210 final public function getConfig (?string $ key = null )
218211 {
@@ -231,7 +224,6 @@ final public function getConfig(?string $key = null)
231224 * @param string $filename Filename from which you want to import the database
232225 * @return bool true on success
233226 * @throws \Exception
234- * @uses _importExecutableWithCompression()
235227 */
236228 final public function import (string $ filename ): bool
237229 {
0 commit comments