Multisite: Fix `switch(` spacing after [37657]

Fixes #36717.


git-svn-id: https://develop.svn.wordpress.org/trunk@37658 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Jeremy Felt 2016-06-08 04:47:52 +00:00
parent c64d63e51a
commit 91f24a7b4e
2 changed files with 3 additions and 3 deletions

View File

@ -173,7 +173,7 @@ class WP_Network {
* @return bool Whether the property is set.
*/
public function __isset( $key ) {
switch( $key ) {
switch ( $key ) {
case 'blog_id':
case 'site_id':
return true;
@ -194,7 +194,7 @@ class WP_Network {
* @param mixed $value Value to assign to the property.
*/
public function __set( $key, $value ) {
switch( $key ) {
switch ( $key ) {
case 'blog_id':
case 'site_id':
$this->blog_id = (string) $value;

View File

@ -275,7 +275,7 @@ final class WP_Site {
* @param mixed $value Value to assign to the property.
*/
public function __set( $key, $value ) {
switch( $key ) {
switch ( $key ) {
case 'id':
case 'blog_id':
$this->blog_id = (string) $value;