You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a code:
`$client = new Client();
$client->authenticate($apiKey, $token, Client::AUTH_URL_CLIENT_ID);
$manager = new Manager($client);
$card = $manager->getCard();
$card
->setName($_POST['nameProj'])
->setListId('5ac91a71bd573908d72377cd')
->setDescription('NewDescr')
->setDescription('Newdesct2')
->save();`
When I add second "->setDescription('Newdesct2')", the first one is not working. How I can fix this?
The text was updated successfully, but these errors were encountered:
I have a code:
`$client = new Client();
$client->authenticate($apiKey, $token, Client::AUTH_URL_CLIENT_ID);
$manager = new Manager($client);
$card = $manager->getCard();
$card
->setName($_POST['nameProj'])
->setListId('5ac91a71bd573908d72377cd')
->setDescription('NewDescr')
->setDescription('Newdesct2')
->save();`
When I add second "->setDescription('Newdesct2')", the first one is not working. How I can fix this?
The text was updated successfully, but these errors were encountered: