@@ -505,7 +505,7 @@ private function compileNewQuery($query, $bindings)
505505 return $ newQuery ;
506506 }
507507
508- public function compileOffset ($ offset , $ query , $ bindings = array () , $ me )
508+ public function compileOffset ($ offset , $ query , $ bindings = [] , $ me )
509509 {
510510 $ limit = $ this ->queryGrammar ->getBuilder ()->limit ;
511511 $ from = explode (" " , $ this ->queryGrammar ->getBuilder ()->from )[0 ];
@@ -638,7 +638,7 @@ private function queryStringForPrimaries($from)
638638 * @param bool $useReadPdo
639639 * @return array
640640 */
641- public function select ($ query , $ bindings = array () , $ useReadPdo = true )
641+ public function select ($ query , $ bindings = [] , $ useReadPdo = true )
642642 {
643643 return $ this ->run ($ query , $ bindings , function (
644644 $ query ,
@@ -675,7 +675,7 @@ public function select($query, $bindings = array(), $useReadPdo = true)
675675 * @param mixed array $bindings
676676 * @return bool
677677 */
678- public function statement ($ query , $ bindings = array () )
678+ public function statement ($ query , $ bindings = [] )
679679 {
680680 return $ this ->run ($ query , $ bindings , function ($ query , $ bindings ) {
681681 if ($ this ->pretending ()) {
0 commit comments