Skip to content

Commit f6eaf25

Browse files
chore: format phpcs
1 parent 31c82e2 commit f6eaf25

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/class-tiny-server-capabilities.php

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,15 +96,18 @@ public static function uploads_htaccess_writable() {
9696
/**
9797
* Get a detailed capabilities object.
9898
*
99-
* @return array Array with properties: server, is_apache, has_mod_rewrite, uploads_writable, htaccess_available
99+
* @return array Array with properties: server, is_apache, has_mod_rewrite,
100+
* uploads_writable, htaccess_available
100101
*/
101102
public static function get_capabilities() {
102103
return array(
103104
'server' => self::get_server_type(),
104105
'is_apache' => self::is_apache(),
105106
'has_mod_rewrite' => self::has_mod_rewrite(),
106107
'uploads_writable' => self::uploads_htaccess_writable(),
107-
'htaccess_available' => self::is_apache() && self::has_mod_rewrite() && self::uploads_htaccess_writable(),
108+
'htaccess_available' => self::is_apache() &&
109+
self::has_mod_rewrite() &&
110+
self::uploads_htaccess_writable(),
108111
);
109112
}
110113
}

0 commit comments

Comments
 (0)