Skip to content

Commit 5d0b761

Browse files
committed
Fix bug in configuration with rotation
Signed-off-by: Lasse Mammen <lkm@bookboon.com>
1 parent 18e697c commit 5d0b761

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)