Skip to content

Commit b8e74ee

Browse files
committed
CS
1 parent b1a044d commit b8e74ee

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/AbstractGithubObject.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,16 +131,16 @@ protected function fetchUrl($path, $page = 0, $limit = 0)
131131
// If we have a defined page number add it to the JUri object.
132132
if ($page > 0)
133133
{
134-
$uri->setVar('page', (int)$page);
134+
$uri->setVar('page', (int) $page);
135135
}
136136

137137
// If we have a defined items per page add it to the JUri object.
138138
if ($limit > 0)
139139
{
140-
$uri->setVar('per_page', (int)$limit);
140+
$uri->setVar('per_page', (int) $limit);
141141
}
142142

143-
return (string)$uri;
143+
return (string) $uri;
144144
}
145145

146146
/**

0 commit comments

Comments
 (0)