Blame view

src/vendor/1.2.5/Phalcon/Mvc/Model/MetaData/Strategy/Introspection.php 794 Bytes
1ea3b987   Administrator   maby first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
  <?php 
  
  namespace Phalcon\Mvc\Model\MetaData\Strategy {
  
  	/**
  	 * Phalcon\Mvc\Model\MetaData\Strategy\Instrospection
  	 *
  	 * Queries the table meta-data in order to instrospect the model's metadata
  	 */
  	
  	class Introspection {
  
  		/**
  		 * The meta-data is obtained by reading the column descriptions from the database information schema
  		 *
  		 * @param \Phalcon\Mvc\ModelInterface $model
  		 * @param \Phalcon\DiInterface $dependencyInjector
  		 * @return array
  		 */
  		public function getMetaData($model, $dependencyInjector){ }
  
  
  		/**
  		 * Read the model's column map, this can't be infered
  		 *
  		 * @param \Phalcon\Mvc\ModelInterface $model
  		 * @param \Phalcon\DiInterface $dependencyInjector
  		 * @return array
  		 */
  		public function getColumnMaps($model, $dependencyInjector){ }
  
  	}
  }