Skip to content

Commit

Permalink
ran pint
Browse files Browse the repository at this point in the history
  • Loading branch information
dcblogdev committed May 12, 2024
1 parent b2c2dbb commit f5757db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Resources/Files.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ class Files extends MsGraph
public function getFiles(string $path = '', string $type = 'me'): array
{
$path = blank($path)
? $type . '/drive/root/children?$orderby=name%20asc'
: $type . '/drive/root:' . $this->forceStartingSlash($path) . ':/children';
? $type.'/drive/root/children?$orderby=name%20asc'
: $type.'/drive/root:'.$this->forceStartingSlash($path).':/children';

if (is_array($msGraph = MsGraph::get($path))) {
return $msGraph;
Expand Down

0 comments on commit f5757db

Please sign in to comment.