name = $name; $this->nullable = $nullable; $this->defaultValue = $defaultValue; } public function getName() { return $this->name; } public function notNull() { return !$this->nullable; } public function getDefaultValue() { return $this->defaultValue; } }