Jacek Kowalski
2016-02-12 4aa6278f7fd40fdcbbde2be5c7e0e68c3117b44e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
class config {
    protected $APIs = array(
        'Gadu-Gadu' => array(
            'numer' => '',
            'login' => '',
            'haslo' => '',
        ),
        'IMified' => array(
            'user' => '',
            'pass' => '',
            'key' => '',
        ),
    );
}
?>