What swears Yii2?

I forgot that the site has changed and stopped working.

Unknown Property - yii \ base \ UnknownPropertyException Getting unknown property: common \ models \ Articles :: id

if (method_exists($this, 'set' . $name)) { throw new InvalidCallException('Getting write-only property: ' . get_class($this) . '::' . $name); } else { **throw new UnknownPropertyException('Getting unknown property: ' . get_class($this) . '::' . $name);** } 
  • See the log and diff of recent changes. - 0xdb
  • Getting unknown property: common \ models \ Articles :: id See what's wrong with id in Articles model - Don Peregnoy
  • somewhere you call $ model-> id, but it does not exist. - dasauser

0