Skip to content

Commit 0a20793

Browse files
committed
Formatting
1 parent a0f3872 commit 0a20793

File tree

3 files changed

+41
-41
lines changed

3 files changed

+41
-41
lines changed

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
#
7171
# This is also used if you do content translation via gettext catalogs.
7272
# Usually you set "language" from the command line for these cases.
73-
language = None
73+
language = 'en'
7474

7575
# List of patterns, relative to source directory, that match files and
7676
# directories to ignore when looking for source files.

src/SortedCollection/SubMap.php

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -774,37 +774,37 @@ public function jsonSerialize()
774774
if ($this->fromOption == self::UNUSED) {
775775
if ($this->toOption == self::UNUSED) {
776776
return array(
777-
'ViewMap' => array(
778-
'map' => $this->map->jsonSerialize(),
779-
)
777+
'ViewMap' => array(
778+
'map' => $this->map->jsonSerialize(),
779+
)
780780
);
781781
} else {
782782
return array(
783-
'HeadMap' => array(
784-
'map' => $this->map->jsonSerialize(),
785-
'toKey' => $this->toKey,
786-
'toInclusive' => $this->toOption == self::INCLUSIVE,
787-
)
783+
'HeadMap' => array(
784+
'map' => $this->map->jsonSerialize(),
785+
'toKey' => $this->toKey,
786+
'toInclusive' => $this->toOption == self::INCLUSIVE,
787+
)
788788
);
789789
}
790790
} else {
791791
if ($this->toOption == self::UNUSED) {
792792
return array(
793-
'TailMap' => array(
794-
'map' => $this->map->jsonSerialize(),
795-
'fromKey' => $this->fromKey,
796-
'fromInclusive' => $this->fromOption == self::INCLUSIVE,
797-
)
793+
'TailMap' => array(
794+
'map' => $this->map->jsonSerialize(),
795+
'fromKey' => $this->fromKey,
796+
'fromInclusive' => $this->fromOption == self::INCLUSIVE,
797+
)
798798
);
799799
} else {
800800
return array(
801-
'SubMap' => array(
802-
'map' => $this->map->jsonSerialize(),
803-
'fromKey' => $this->fromKey,
804-
'fromInclusive' => $this->fromOption == self::INCLUSIVE,
805-
'toKey' => $this->toKey,
806-
'toInclusive' => $this->toOption == self::INCLUSIVE,
807-
)
801+
'SubMap' => array(
802+
'map' => $this->map->jsonSerialize(),
803+
'fromKey' => $this->fromKey,
804+
'fromInclusive' => $this->fromOption == self::INCLUSIVE,
805+
'toKey' => $this->toKey,
806+
'toInclusive' => $this->toOption == self::INCLUSIVE,
807+
)
808808
);
809809
}
810810
}

src/SortedCollection/SubSet.php

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -289,37 +289,37 @@ public function jsonSerialize()
289289
if (isset($this->from)) {
290290
if (isset($this->to)) {
291291
return array(
292-
'SubSet' => array(
293-
'set' => $this->set->jsonSerialize(),
294-
'from' => $this->from,
295-
'fromInclusive' => $this->fromInclusive,
296-
'to' => $this->to,
297-
'toInclusive' => $this->toInclusive,
298-
)
292+
'SubSet' => array(
293+
'set' => $this->set->jsonSerialize(),
294+
'from' => $this->from,
295+
'fromInclusive' => $this->fromInclusive,
296+
'to' => $this->to,
297+
'toInclusive' => $this->toInclusive,
298+
)
299299
);
300300
} else {
301301
return array(
302-
'TailSet' => array(
303-
'set' => $this->set->jsonSerialize(),
304-
'from' => $this->from,
305-
'fromInclusive' => $this->fromInclusive,
306-
)
302+
'TailSet' => array(
303+
'set' => $this->set->jsonSerialize(),
304+
'from' => $this->from,
305+
'fromInclusive' => $this->fromInclusive,
306+
)
307307
);
308308
}
309309
} else {
310310
if (isset($this->to)) {
311311
return array(
312-
'HeadSet' => array(
313-
'set' => $this->set->jsonSerialize(),
314-
'to' => $this->to,
315-
'toInclusive' => $this->toInclusive,
316-
)
312+
'HeadSet' => array(
313+
'set' => $this->set->jsonSerialize(),
314+
'to' => $this->to,
315+
'toInclusive' => $this->toInclusive,
316+
)
317317
);
318318
} else {
319319
return array(
320-
'ViewSet' => array(
321-
'set' => $this->set->jsonSerialize(),
322-
)
320+
'ViewSet' => array(
321+
'set' => $this->set->jsonSerialize(),
322+
)
323323
);
324324
}
325325
}

0 commit comments

Comments
 (0)