Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
edgrosvenor committed Mar 31, 2020
1 parent 0553c1b commit 83806a7
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/SheetModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,16 @@ public function loadFromSheet(): array
return $rows->toArray();
}

public function getSheetId()
{
return $this->sheetId;
}

public function getSpreadsheetId()
{
return $this->spreadsheetId;
}

public function getCacheName()
{
return !is_null($this->getConnection()) ? explode('.', basename($this->getConnection()->getDatabaseName()))[0] : null;
Expand Down

0 comments on commit 83806a7

Please sign in to comment.