Skip to content

Commit eea7c99

Browse files
authored
Merge pull request #4 from bookboon/hotfix/bug-rotation
Fix bug in configuration with rotation
2 parents 18e697c + 5d0b761 commit eea7c99

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Bookboon/ApiBundle/Helper/ConfigurationHolder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public function getBranding()
6161
*/
6262
public function getRotation()
6363
{
64-
return isset($this->_config['rotation']) ? $this->_config['branding'] : null;
64+
return isset($this->_config['rotation']) ? $this->_config['rotation'] : null;
6565
}
6666

6767
/**

0 commit comments

Comments
 (0)