PHP code example of bogdanfinn / tmdb-bundle

1. Go to this page and download the library: Download bogdanfinn/tmdb-bundle library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

bogdanfinn / tmdb-bundle example snippets



// app/AppKernel.php
// ...
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = array(
            // ...

            new bogdanfinn\tmdbBundle\tmdbBundle(),
        );

        // ...
    }

    // ...
}

$tvShowClient = $this->get('tmdb_tvshow_client');

$movieClient = $this->get('tmdb_movie_client');

$episodeClient = $this->get('tmdb_episode_client');

$seasonClient = $this->get('tmdb_season_client');

$searchClient = $this->get('tmdb_search_client');

$response = $client->method($firstParameter, 'de');
$response = $client->method($firstParameter, 'de');