# Bug report This line of code **in a trait** produces errors: - in Layout class: "condition is always true" - in other classes: "condition is always false" https://github.com/wordplate/acf/issues/53#issuecomment-591013171 ### Code snippet that reproduces the problem ```php $key = __CLASS__ === 'WordPlate\Acf\Fields\Layout' ? 'display' : 'layout'; ``` ### Expected output No error.