@@ -771,11 +771,13 @@ public function get($key)
771
771
* @param string $key
772
772
* @param mixed $value
773
773
*
774
- * @return $this Instance of self.
774
+ * @return $this
775
775
*/
776
776
public function put ($ key , $ value )
777
777
{
778
- return $ this ->add ($ key , $ value );
778
+ $ this ->add ($ key , $ value );
779
+
780
+ return $ this ;
779
781
}
780
782
781
783
/**
@@ -936,7 +938,9 @@ public function addJoin($left, $right, $joinType = null)
936
938
$ conditions [] = $ condition ;
937
939
}
938
940
939
- return $ this ->addMultipleJoin ($ conditions , $ joinType );
941
+ $ this ->addMultipleJoin ($ conditions , $ joinType );
942
+
943
+ return $ this ;
940
944
}
941
945
942
946
$ join = new Join ();
@@ -966,7 +970,9 @@ public function addJoin($left, $right, $joinType = null)
966
970
967
971
$ join ->setJoinType ($ joinType );
968
972
969
- return $ this ->addJoinObject ($ join );
973
+ $ this ->addJoinObject ($ join );
974
+
975
+ return $ this ;
970
976
}
971
977
972
978
/**
@@ -1042,7 +1048,9 @@ public function addMultipleJoin($conditions, $joinType = null)
1042
1048
$ join ->setJoinType ($ joinType );
1043
1049
$ join ->setJoinCondition ($ joinCondition );
1044
1050
1045
- return $ this ->addJoinObject ($ join );
1051
+ $ this ->addJoinObject ($ join );
1052
+
1053
+ return $ this ;
1046
1054
}
1047
1055
1048
1056
/**
@@ -1886,10 +1894,14 @@ public function addUsingOperator($p1, $value = null, $operator = null, $preferCo
1886
1894
if ($ this ->defaultCombineOperator === Criteria::LOGICAL_OR ) {
1887
1895
$ this ->defaultCombineOperator = Criteria::LOGICAL_AND ;
1888
1896
1889
- return $ this ->addOr ($ p1 , $ value , $ operator , $ preferColumnCondition );
1897
+ $ this ->addOr ($ p1 , $ value , $ operator , $ preferColumnCondition );
1898
+
1899
+ return $ this ;
1890
1900
}
1891
1901
1892
- return $ this ->addAnd ($ p1 , $ value , $ operator , $ preferColumnCondition );
1902
+ $ this ->addAnd ($ p1 , $ value , $ operator , $ preferColumnCondition );
1903
+
1904
+ return $ this ;
1893
1905
}
1894
1906
1895
1907
/**
@@ -2808,7 +2820,7 @@ public function _elseif($cond)
2808
2820
*
2809
2821
* @throws \Propel\Runtime\Exception\LogicException
2810
2822
*
2811
- * @return \Propel\Runtime\Util\PropelConditionalProxy|$this
2823
+ * @return \Propel\Runtime\Util\PropelConditionalProxy|static
2812
2824
*/
2813
2825
public function _else ()
2814
2826
{
@@ -2825,7 +2837,7 @@ public function _else()
2825
2837
*
2826
2838
* @throws \Propel\Runtime\Exception\LogicException
2827
2839
*
2828
- * @return $this
2840
+ * @return $this|\Propel\Runtime\ActiveQuery\Criteria
2829
2841
*/
2830
2842
public function _endif ()
2831
2843
{
0 commit comments