If you the port was a trunk then the Native VLAN would by default be VLAN 1. However you are configuring the port as an Access Port (switch mode access) so the commands - 'switchport access vlan 11' and 'switchport voice vlan 12' are applied. If you hard-coded the port as a trunk 'switchport mode trunk' then the Access VLAN or Native VLAN (whichever but it is the Un-Tagged VLAN) would by default be VLAN 1.
For consistency you can apply the following on Voice/Data Access ports:
interface FastEthernet0/1
switchport access vlan 11
switchport trunk native vlan 11
switchport mode access
switchport voice vlan 12
However since the port is configured as an access port the command 'switchport trunk native vlan 12' is ignored.
HTH
Andy
p.s. There is usually LOTS more configuration applied per port such as QoS (switch dependant), port-security, DHCP snooping etc.