Skip to content

Commit

Permalink
Get links and copy arrays from config as arrays.
Browse files Browse the repository at this point in the history
  • Loading branch information
qrz-io committed Sep 22, 2015
1 parent 1456ff5 commit b62bd23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Probuild/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public function getCleanExceptions()
*/
public function getLinkDirectoryPaths()
{
return $this->data[self::LINK_DIR_PATHS];
return $this->getDataArrayFromConfig(self::LINK_DIR_PATHS);
}

/**
Expand All @@ -85,7 +85,7 @@ public function getLinkDirectoryPaths()
*/
public function getCopyDirectoryPaths()
{
return $this->data[self::COPY_DIR_PATHS];
return $this->getDataArrayFromConfig(self::COPY_DIR_PATHS);
}

/**
Expand Down

0 comments on commit b62bd23

Please sign in to comment.