Skip to content

Commit fc8f15a

Browse files
authored
Fix typo: horizontalPresentaton -> horizontalPresentation (#200)
1 parent 30ebd56 commit fc8f15a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/OpenTok/Layout.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class Layout {
1010
private static $bestFit = null;
1111
private static $pip = null;
1212
private static $verticalPresentation = null;
13-
private static $horizontalPresentaton = null;
13+
private static $horizontalPresentation = null;
1414

1515
public static function getBestFit()
1616
{
@@ -38,10 +38,10 @@ public static function getVerticalPresentation()
3838

3939
public static function getHorizontalPresentation()
4040
{
41-
if (is_null(self::$horizontalPresentaton)) {
42-
self::$horizontalPresentaton = new Layout('horizontalPresentaton');
41+
if (is_null(self::$horizontalPresentation)) {
42+
self::$horizontalPresentation = new Layout('horizontalPresentation');
4343
}
44-
return self::$horizontalPresentaton;
44+
return self::$horizontalPresentation;
4545
}
4646

4747
public static function createCustom($options)

0 commit comments

Comments
 (0)