Closed majidalamdary closed 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
);
سلام برای دریافت اطلاعات سرور این خطا رو میده 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();