@@ -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 }
0 commit comments