Need Another Set Of Eyes

Can you see anything I am doing wrong? I would greatly appreciate it

[php]
$sku = ‘3j3n34gbksr’;
$package_name = ‘net.yadayada.app’;

$requestBody = new Google_Service_AndroidPublisher_InAppProduct(
    array(
        'packageName' => $package_name,
        'sku' => $sku,
        'status' => 'active',
        'purchaseType' => 'managedUser',
        'defaultPrice' => array(
            'priceMicros' => '8000000',
            'currency' => 'USD'
        ),
        'prices' => array(
            ('en-US') => array(
                'priceMicros' => '',
                'currency' => ''
            )
        ),
        'listings' => array(
            ('en-US') => array(
                'title' => 'testing',
                'description' => 'testing'
            )
        ),
        'defaultLanguage' => 'en-US',
        "subscriptionPeriod" => '',
        "season" => '',
        "trialPeriod" => ''
    )
);
$InApp_Insert = $service->inappproducts->insert($package_name, $requestBody);[/php]

Invalid characters,

31 )

Sponsor our Newsletter | Privacy Policy | Terms of Service