Skip to content

Commit

Permalink
Set getBarsArray methos public
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolaasuni committed Nov 22, 2023
1 parent 313b243 commit ac71799
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
2.0.7
2.0.8
4 changes: 2 additions & 2 deletions src/Type.php
Expand Up @@ -542,7 +542,7 @@ public function getGrid(
*
* @return array<int, array{float, float, float, float}>
*/
protected function getBarsArrayXYXY(): array
public function getBarsArrayXYXY(): array
{
$rect = [];
foreach ($this->bars as $bar) {
Expand Down Expand Up @@ -581,7 +581,7 @@ protected function getBarsArrayXYXY(): array
*
* @return array<int, array{float, float, float, float}>
*/
protected function getBarsArrayXYWH(): array
public function getBarsArrayXYWH(): array
{
$rect = [];
foreach ($this->bars as $bar) {
Expand Down

0 comments on commit ac71799

Please sign in to comment.