Skip to content

Commit 3231c48

Browse files
author
mimidots
committed
Typo and grammar fixes
1 parent 9c0b433 commit 3231c48

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Builder.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ public function get($limit = 0, $offet = 0)
113113
//check if the limit is a number
114114
if (!is_numeric($limit)) {
115115
static::$response["status"] = "error";
116-
static::$response["response"] = "Parameter limit should be numeric function get()";
116+
static::$response["response"] = "Parameter limit should be numeric at function get()";
117117
static::$response["code"] = 6000;
118118

119119
return static::terminate(static::$response);
@@ -122,7 +122,7 @@ public function get($limit = 0, $offet = 0)
122122
//check if the offsel is a number
123123
if (!is_numeric($offet)) {
124124
static::$response["status"] = "error";
125-
static::$response["response"] = "Parameter offset should be numeric in function get()";
125+
static::$response["response"] = "Parameter offset should be numeric at function get()";
126126
static::$response["code"] = 6001;
127127

128128
return static::terminate(static::$response);

0 commit comments

Comments
 (0)