PHP code example of babeuloula / adjacent-departments

1. Go to this page and download the library: Download babeuloula/adjacent-departments 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/ */

    

babeuloula / adjacent-departments example snippets


use BaBeuloula\AdjacentDepartments\AdjacentDepartments;

$adjacentDepartments = new AdjacentDepartments();
$adjacentDepartments->find('69'); // ['01','71','42','43','07','26','38']
$adjacentDepartments->isAdjacent('69', '75'); // false

use BaBeuloula\AdjacentDepartments\AdjacentDepartments;

$container
    ->get(AdjacentDepartments::class)
    ->find('69'); // ['01','71','42','43','07','26','38']

$container
    ->get(AdjacentDepartments::class)
    ->isAdjacent('69', '75'); // false