I have a few PHP classes (X_Model_TableName format), that represent tables in my MySQL database, with just protected properties, and getters/setters, and I've also added a database connection to NetBeans so it can see what's in my database.
Currently I need to add a column to the database, then open the relevant Model_* file, and add a property, and then generate the getter and setters. I'm wondering if there's a way to sort of link a file to a table, so when I add a column to a table, it will either auto-add the necessary code to the PHP class file.
Does NetBeans have any functionality like this available? I've come across this plugin, but it doesn't seem to work, and it's also not exactly what I'm after.