this error comes when i remove an item from my cart
<?php
if (in_array($item['item_id'], $Cart->getCartId($product->getData('cart')))){
echo '<button type="submit" disabled class="btn btn-success font-size-12">In the Basket</button>';
}else{
echo '<button type="submit" name="top_sale_submit" class="btn btn-warning font-size-12">Add to Basket</button>';
}
?>
this is the code mentioned in the error. please help me