Jooyeshgar / moadian

GNU General Public License v3.0
30 stars 10 forks source link

سلام بروز خطای Dependency #28

Closed majidalamdary closed 9 months ago

majidalamdary commented 9 months ago

سلام برای دریافت اطلاعات سرور این خطا رو میده Unresolvable dependency resolving [Parameter #0 [ $privateKey ]] in class Jooyeshgar\Moadian\Moadian کد من: $privateKey = file_get_contents(DIR . '/private.key'); $certificate = file_get_contents(DIR . '/cert.cer'); $moadian = new Moadian($privateKey,$certificate); $info = $moadian->getServerInfo();

hadi60 commented 9 months ago

پارامتر اول نام کاربری و پارامتر دوم privateKey فرمت رو هم داری اشتباه می دی

            $privateKeyPath = $config['private_key_path'] ?? storage_path('app/keys/private.pem');
            $privateKey = file_get_contents($privateKeyPath);

            return new Moadian(
                $config['username'],
                $privateKey
            );