Changes between Version 45 and Version 46 of members/GRIP-UQAM/Symfony


Ignore:
Timestamp:
Jul 9, 2017, 7:40:10 PM (8 years ago)
Author:
Grip Uqam
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • members/GRIP-UQAM/Symfony

    v45 v46  
    451451=== Using friendsofsymfony/user-bundle ===
    452452==== FOS\UserBundle\Model\UserInterface ====
    453 * [http://php.net/manual/en/class.serializable.php The Serializable interface]
     453* //[http://php.net/manual/en/class.serializable.php The Serializable interface]//
     454* //[http://php.net/manual/en/language.oop5.abstract.php Class Abstraction]//
    454455===== UserInterface =====
    455456* Symfony\Component\Security\Core\User
     
    479480* bool isCredentialsNonExpired()
    480481* bool isEnabled()
    481 ===== FOS\UserBundle\Model\UserInterface =====
     482===== FOS\UserBundle UserInterface =====
     483* FOS\UserBundle\Model\UserInterface
     484* https://github.com/FriendsOfSymfony/FOSUserBundle/blob/master/Model/UserInterface.php
    482485{{{#!sh
    483486interface UserInterface extends AdvancedUserInterface, \Serializable
     
    527530self              setLastLogin(DateTime $time = null)
    528531}}}
     532===== FOS\UserBundle User =====
     533* FOS\UserBundle\Model\User
     534* Storage agnostic user object.
     535* https://github.com/FriendsOfSymfony/FOSUserBundle/blob/master/Model/User.php
     536{{{#!sh
     537abstract class User implements UserInterface, GroupableInterface
     538...
     539}}}
     540* ORM Mapping is in the xml file [https://github.com/FriendsOfSymfony/FOSUserBundle/blob/master/Resources/config/doctrine-mapping/User.orm.xml Resources/config/doctrine-mapping/User.orm.xml] it does not map "$id" neither "$plainPassword"(!) defined in [https://github.com/FriendsOfSymfony/FOSUserBundle/blob/master/Model/User.php Model/User.php].