Skip to content

Instantly share code, notes, and snippets.

@harikt
Created July 6, 2015 06:29
Show Gist options
  • Save harikt/7540f6a6e073e5a06a97 to your computer and use it in GitHub Desktop.
Save harikt/7540f6a6e073e5a06a97 to your computer and use it in GitHub Desktop.
<?php
$client = new Client(
array(
'base_url' => \SproutVideo::$base_url,
'defaults' => array(
'headers' => array(
'SproutVideo-Api-Key' => \SproutVideo::$api_key,
'Content-Type', 'application/json;charset=utf-8'
),
)
)
);
@harikt
Copy link
Author

harikt commented Jul 6, 2015

phpcbf hello.php

giving

<?php
$client = new Client(
    array(
    'base_url' => \SproutVideo::$base_url,
        'defaults' => array(
    'headers' => array(
                'SproutVideo-Api-Key' => \SproutVideo::$api_key,
                'Content-Type', 'application/json;charset=utf-8'
            ),
        )
    )
);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment