You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following lines in the README.md file don't work in my PHP code:
`<?php
// folder is created in the root folder.
SproutVideo\Folder.create_folder(array('name' => 'New Folder'));
// folder is created as a child of the folder specified by the id 'def456'
SproutVideo\Folder.create_folder(array(
'name' => 'New Folder',
'parent_id' => 'def456'
));
?>This does work:<?php
// folder is created in the root folder.
SproutVideo\Folder::create_folder(array('name' => 'New Folder'));
// folder is created as a child of the folder specified by the id 'def456'
SproutVideo\Folder::create_folder(array(
'name' => 'New Folder',
'parent_id' => 'def456'
));
?>`
The text was updated successfully, but these errors were encountered:
The following lines in the README.md file don't work in my PHP code:
`<?php
// folder is created in the root folder.
SproutVideo\Folder.create_folder(array('name' => 'New Folder'));
// folder is created as a child of the folder specified by the id 'def456'
SproutVideo\Folder.create_folder(array(
'name' => 'New Folder',
'parent_id' => 'def456'
));
?>
This does work:
<?php// folder is created in the root folder.
SproutVideo\Folder::create_folder(array('name' => 'New Folder'));
// folder is created as a child of the folder specified by the id 'def456'
SproutVideo\Folder::create_folder(array(
'name' => 'New Folder',
'parent_id' => 'def456'
));
?>`
The text was updated successfully, but these errors were encountered: